-
Notifications
You must be signed in to change notification settings - Fork 1
/
signin.html
31 lines (24 loc) · 1012 Bytes
/
signin.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
<!DOCTYPE html>
<head>
<link rel='stylesheet' href='static/css/main.css'>
</head>
<body>
<form style="border:1px solid #ccc" method='post' action='static/php/signin.php'>
<div class="container">
<h1>Sign In</h1>
<p>Please fill in this form to Sign In.</p>
<hr>
<label for="username"><b>username</b></label>
<input type="text" placeholder="username" id="usernamefield" name='username' required>
<label for="psw"><b>Password</b></label>
<input type="password" placeholder="password" id="passwordfield" name='password' required>
<p>By creating an account you agree to our <a href="#" style="color:dodgerblue">Terms & Privacy</a>.</p>
<p>Don't have an Account? <a href="signup.html" style="color:dodgerblue">Sign Up</a>.</p>
<div class="clearfix">
<button type="button" class="cancelbtn" >Cancel</button>
<button id="signup" class="signupbtn" type="submit">Sign In</button>
</div>
</div>
</form>
</body>
</html>