forked from kylek7000/RRKFalcons
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.php
23 lines (23 loc) · 791 Bytes
/
index.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<!DOCTYPE html>
<html lang = "en">
<head>
<title>SourceAmerica Design Challenge</title>
<link href="main.css" type="text/css" rel="stylesheet">
</head>
<body>
<div class="header">
<h1>Time Clock</h1>
</div>
<div id="wrap">
<h3>Sign In/Sign Out Form</h3>
<p>Please enter your email and password for verification</p>
<form action="login.php" method="post">
<label for="email">Email:</label>
<input id="email" type="text" name="email" value="" />
<label for="password">Password:</label>
<input type="password" id="password" type="text" name="password" value="" />
<br><br><input type="submit" class="submit_button" value="Submit" />
</form>
</div>
</body>
</html>