-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsignUp.html
30 lines (28 loc) · 1017 Bytes
/
signUp.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
<!DOCTYPE html>
<html>
<head>
<title>Sign Up</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="static/bootstrap.min.css" rel="stylesheet" media="screen">
</head>
<body>
<div class="container">
<h1>Please sign up</h1>
<br>
<form action="./sign_up" method="POST">
<input type="text" placeholder="First name" name="firstname" >
<br>
<input type="text" placeholder="Last name" name="lastname" >
<br>
<input type="text" placeholder="Email" name="email" >
<br>
<input type="password" placeholder="Password" name="password" >
<br>
<input type="password" placeholder="Confirm password" name="confirmpassword" >
<br>
<input class="btn btn-default" type="submit" value="Submit">
</form>
<p class="error"></p>
</div>
</body>
</html>