-
Notifications
You must be signed in to change notification settings - Fork 0
/
signup.html
48 lines (45 loc) · 1.76 KB
/
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
<html>
<head>
<!--<img src="shop.png" id="bg" alt=""> -->
<!--<body background="shop.png" -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>ShopEasy.com SignUp</title>
<link href="css/style-signup.css" type="text/css" rel="stylesheet">
</head>
<body>
<div class="background"
</div>
<div class="top-info">
<div class="inner-bg">
<div class="container">
<div class="row">
<div class=col-sm-8 col-sm-offset-2 text>
<h1 align="left">SignUp</h1>
</div>
</div>
</div>
<div class="row">
<div class="col-sm-6 col-sm-offset-3 form-box">
<form role="form" action="" method="post" class="login-form">
<div class="form-group">
<label for="form-firstname">First Name:<br />
<input type="text" name="form-firstname" placeholder="Enter firstname..." class="form-firstname" "form-control" id="form-firstname">
<label for="form-lastname">Last Name:<br />
<input type="text" name="form-lastname" placeholder="Enter lastname..." class="form-lastname" "form-control" id="form-lastname">
<label for="form-username">Username:<br />
<input type="text" name="form-username" placeholder="Enter username..." class="form-username" "form-control" id="form-username">
</div>
<div class="form-group">
<label for="form-password">Password:<br />
<input type="password" name="form-password" placeholder="Enter Password..." class="form-password" "form-control" id="form-password">
</div>
<a href="login.html">
<button>SignUp</button>
</form>
</div>
</div>
</div>
</div>
</body>
</html>