-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsignup.html
47 lines (44 loc) · 2.03 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Sign Up</title>
<link rel="stylesheet" href="signup.css">
</head>
<body>
<div id="contain">
<div class="box">
<img src="https://cdn-images.cure.fit/www-curefit-com/image/upload/c_fill,w_75,ar_1,q_auto:eco,dpr_1.25,f_auto,fl_progressive//image/test/brand-logo/curefit-logo-white.svg"
alt="name" />
<img id="log"
src="https://cdn-images.cure.fit/www-curefit-com/image/upload/c_fill,w_135,ar_3.55,q_auto:eco,dpr_1.25,f_auto,fl_progressive//image/test/brand-logo/cf-name-white.png"
alt="logo" />
<form submit="signin">
<h2>Sign Up</h2>
<label for="">Name</label>
<input type="name" id="name" placeholder="Enter Your Name" /><br>
<label for="Email">Email</label>
<input type="email" id="email" placeholder="Enter Your Email" /><br>
<label for="">Password</label>
<input type="password" id="password" placeholder="Enter Your Password" /><br>
<label for="">Mobile</label>
<input type="phone" id="phone" placeholder="Enter Your Number" /><br>
<input class="submit" onclick="adduser()" type="submit" value="Sign Up">
<p>By signing up, I accept the
<a href="#">Terms of Services</a>
</p>
<p>Already have an account?
<a href="signin.html" id="signin">Sign in</a>
</p>
</form>
</div>
<div class="backimg">
<img
src="https://images.unsplash.com/photo-1550345332-09e3ac987658?ixlib=rb-1.2.1&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=387&q=80" /><br>
</div>
</div>
<script src="signup.js"></script>
</body>
</html>