-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsignup authentication.html
58 lines (58 loc) · 2.1 KB
/
signup authentication.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
!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Lobster&display=swap" rel="stylesheet">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Sign Up Authentication</title>
<link rel="stylesheet" href="/style_signup_authenticaion.css">
</head>
<body>
<form action="">
<div class="sign up">
<header>
<h1>Signup</h1>
<br>
<h3>Explore the world</h3>
</header>
</div>
<div class="signupform">
<div class="text">
<input type="text" placeholder="Name" required name="name" id="name">
</div>
<div class="email">
<input type="email" placeholder="Email" required name="email" id="email">
</div>
<div class="pswd">
<input type="password" placeholder="Set Password" name="pswd" id="pswd">
</div>
<div class="cpswd">
<input type="password" placeholder="Confirm Password" onkeypress='check();'>
</div>
<div>
<input type="submit" value="Signup" class="button">
</div>
<div class="divider">
<div class="line"></div>
<div class="OR">OR</div>
<div class="line"></div>
</div>
<div class="G">
<a class="google" href="#">
<img src="https://img.icons8.com/color/16/000000/google-logo.png" alt="G" style="width: 25px; float:left;">SignUp with Google
</a>
</div>
<div class="fb">
<a class="facebook" href="#">
<img src="/images/facebook logo.png" alt="fb" style="width: 25px; float:left;">SignUp with Facebook
</a>
</div>
</div>
<div class="login">
<a href="/login authentication.html">Login</a>
</div>
</body>
</html>