-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSignUp.html
More file actions
74 lines (66 loc) · 3.48 KB
/
SignUp.html
File metadata and controls
74 lines (66 loc) · 3.48 KB
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" type="image/png" href="images/icons/favicon.ico"/>
<title>SignUp 3Click</title>
<!--===============================================================================================-->
<link rel="icon" type="image/png" href="images/icons/favicon.ico"/>
<!--===============================================================================================-->
<link rel="stylesheet" type="text/css" href="vendor/bootstrap/css/bootstrap.min.css">
<!--===============================================================================================-->
<link rel="stylesheet" type="text/css" href="fonts/font-awesome-4.7.0/css/font-awesome.min.css">
<!--===============================================================================================-->
<link rel="stylesheet" type="text/css" href="vendor/animate/animate.css">
<!--===============================================================================================-->
<link rel="stylesheet" type="text/css" href="vendor/css-hamburgers/hamburgers.min.css">
<!--===============================================================================================-->
<link rel="stylesheet" type="text/css" href="vendor/select2/select2.min.css">
<!--===============================================================================================-->
<link rel="stylesheet" type="text/css" href="css/util.css">
<link rel="stylesheet" type="text/css" href="css/main.css">
<!--===============================================================================================-->
</head>
<body>
<div class="limiter" >
<div class="container-login100">
<div class="wrap-login100">
<!-- Image -->
<div class="login100-pic">
<img src="images/img-01.png" alt="IMG">
</div>
<!-- Form-->
<form class="login100-form">
<div class="login100-form-title">
SignUp
</div>
<div class="wrap-input100 ">
<input class="input100" type="text" placeholder="FirstName">
</div>
<div class="wrap-input100 ">
<input class="input100" type="email" placeholder="LastName">
</div>
<div class="wrap-input100 ">
<input class="input100" type="email" placeholder="Email">
</div>
<div class="wrap-input100 ">
<input class="input100" type="datetime-local" placeholder="date">
</div>
<div class="wrap-input100 ">
<input class="input100" type="password" placeholder="password">
</div>
<div class="container-login100-form-btn">
<button class="login100-form-btn"> Submit</button>
</div>
<div class="text-center p-t-136 p-l-20">
<a class="txt2" href="index.html">
Login
</a>
</div>
</form>
</div>
</div>
</div>
</body>
</html>