-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
executable file
·41 lines (41 loc) · 1.51 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.23.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlsn="http://www.w3.org/1999/xhtml">
<head>
<title>Fitlog Training</title>
<meta http-equiv="Content-Type"
content="text/html; charset=utf-8"/>
<link href="style1.css" rel="stylesheet" type="text/css"/>
</head>
<body>
<div id="header">
<div id="sitebranding">
<h1>Fitlog</h1>
</div>
<div id="tagline">
<p>Track all your fitness training needs</p>
</div>
</div> <!-- end of header div -->
<div id="navigation">
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="about.php">About Fitness Log</a></li>
</div> <!-- end of navigation div -->
<div id="bodycontent">
<h2>Welcome to Fitlog</h2>
<p>Please sign in to take full advantage of the website. Here you can track all your fitness workouts, running, swimming, biking, strength and other activities.</p>
<p>
<form action="http://www.vanhlebarsoftware.com/fitlog/login.php" method="post">
<table>
<tr><td><label for="username">User Name:</label></td>
<td><input type="text" name="username" id="username" TABINDEX=1/></td></tr>
<tr><td><label for="password">Password:</label></td>
<td><input type="password" name="password" id="password" TABINDEX=2/></td></tr>
</table>
<p><input type="submit" value="Login">
</form>
</p>
<p>Don't have an account here? <a href="register.php">Register</a>, it is quick, easy and FREE!!</p>
</div> <!-- End of bodycontent div -->
</body>
</html>