-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsign-up-view-index.html
29 lines (29 loc) · 1.14 KB
/
sign-up-view-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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Sign up</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" type="text/css" media="screen" href="main.css" />
<link rel="stylesheet" type="text/css" media="screen" href="sign-up-main.css" />
<!-- <script src="main.js"></script> -->
</head>
<body>
<div class="body">
<h2>Sign up</h2>
<form class="sign-up-form">
<label for="username">Username</label>
<input type="text" placeholder="Username" id="username">
<label for="password">Password</label>
<input type="text" placeholder="Password" id="password">
<label for="password-re">Enter the password again</label>
<input type="text" placeholder="Enter the password again" id="password-re">
<label for="email">Email</label>
<input type="text" placeholder="Email" id="email">
<input type="submit" value="Sign up">
</form>
</div>
<!-- end body -->
</body>
</html>