Browse Source

让程序可以被公网访问

master
jc 1 month ago
parent
commit
c7acc5e588
  1. 4
      public/index.html

4
public/index.html

@ -3,13 +3,13 @@
<head> <head>
<meta charset="UTF-8"> <meta charset="UTF-8">
<title>Daily Workout Plan</title> <title>Daily Workout Plan</title>
<link rel="stylesheet" href="/static/style.css"> <link rel="stylesheet" href="static/style.css">
</head> </head>
<body> <body>
<h1>Daily Workout Plan</h1> <h1>Daily Workout Plan</h1>
<ul id="workout-plan"> <ul id="workout-plan">
<!-- Workout plan will be dynamically inserted here --> <!-- Workout plan will be dynamically inserted here -->
</ul> </ul>
<script src="/static/script.js"></script> <script src="static/script.js"></script>
</body> </body>
</html> </html>
Loading…
Cancel
Save