-
Notifications
You must be signed in to change notification settings - Fork 191
/
SIGNUP.html
119 lines (116 loc) · 3.83 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
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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, shrink-to-fit=no"
/>
<title>SIGN UP</title>
<link rel="stylesheet" href="css/sign.css" />
<link
href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css"
rel="stylesheet"
/>
<link
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.0.3/css/font-awesome.css"
rel="stylesheet"
/>
<link
rel="apple-touch-icon"
sizes="180x180"
href="favicon_package\apple-touch-icon.png"
/>
<link
rel="icon"
type="image/png"
sizes="32x32"
href="favicon_package\favicon-32x32.png"
/>
<link
rel="icon"
type="image/png"
sizes="16x16"
href="favicon_package\favicon-16x16.png"
/>
<link rel="manifest" href="favicon_package\site.webmanifest" />
<link
rel="mask-icon"
href="favicon_package\safari-pinned-tab.svg"
color="#3caea3"
/>
</head>
<body oncontextmenu="return false">
<div class="container px-4 py-5 mx-auto">
<div class="card">
<div class="d-flex flex-lg-row flex-column-reverse">
<div class="card card1">
<div class="row justify-content-center my-auto">
<div class="col-md-8 col-10 my-5">
<div class="row justify-content-center px-3 mb-3">
<img id="logo" src="images/icon.png" />
</div>
<h3 class="mb-5 text-center heading">We are Algo Phantoms</h3>
<h6 class="msg-info">Create a new account</h6>
<div class="form-group">
<label class="form-control-label text-muted">Name</label>
<input
type="text"
id="Username"
name="Username"
placeholder="Username"
class="form-control"
/>
</div>
<div class="form-group">
<label class="form-control-label text-muted">Email-Id</label>
<input
type="text"
id="email"
name="email"
placeholder="Email id"
class="form-control"
/>
</div>
<div class="form-group">
<label class="form-control-label text-muted">Password</label>
<input
type="password"
id="password"
name="password"
placeholder="Password"
class="form-control"
/>
</div>
<div class="row justify-content-center my-3 px-3">
<button class="btn-block btn-color">Sign Up</button>
</div>
</div>
</div>
<div class="bottom text-center mb-5">
<p href="#" class="sm-text mx-auto mb-3">
Already have an account?<button class="btn btn-white ml-2">
<a href="SIGNIN.html">Sign In</a>
</button>
</p>
</div>
</div>
<div class="card card2">
<div class="my-auto mx-md-5 px-md-5 right">
<h3 class="text-white">We are more than just a company</h3>
<small class="text-white">WRITE UP ABOUT THE ALGO PHANTOM</small>
</div>
</div>
</div>
</div>
</div>
<script
type="text/javascript"
src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js"
></script>
<script
type="text/javascript"
src="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.bundle.min.js"
></script>
</body>
</html>