forked from Its-Aman-Yadav/Community-Site
-
Notifications
You must be signed in to change notification settings - Fork 0
/
signup.html
72 lines (69 loc) · 3.08 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="login.css" />
<!-- font-awesome link -->
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css"
/>
<title>Signup</title>
</head>
<body>
<div class="container">
<div class="cover">
<div class="front">
<div class="text">
<img src="images/Slide1.jpg" alt="" />
</div>
</div>
</div>
<!-- Signup Form -->
<form action="index.html" method="get">
<div class="form-content">
<div class="signup-form">
<div class="title">Signup</div>
<div class="input-boxes">
<div class="inputbox" style="margin-bottom: 20px;">
<input type="text" required="required" id="mypassword">
<span>Enter your Name</span>
<i></i>
</div>
<br>
<div class="inputbox" style="margin-bottom: 20px;">
<input type="email" required="required" id="myemail">
<span>Enter your Email</span>
<i></i>
</div>
<br>
<div class="inputbox" style="margin-bottom: 20px;">
<input type="password" required="required" id="mypassword">
<span>Enter your Pass</span>
<i></i>
</div>
<div class="button input-box">
<input type="submit" value="Submit" />
</div>
<div class="text sign-up-text">or</div>
<div class="google text sign-up-text" style="position: relative; right: 5px;">
<button type="button" class="login-with-google-btn">
<svg xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="xMidYMid" viewBox="0 0 256 262" style="width: 20px; height:20px ; position:relative;top:4px; right:10px">
<path fill="#4285F4" d="M255.878 133.451c0-10.734-.871-18.567-2.756-26.69H130.55v48.448h71.947c-1.45 12.04-9.283 30.172-26.69 42.356l-.244 1.622 38.755 30.023 2.685.268c24.659-22.774 38.875-56.282 38.875-96.027"></path>
<path fill="#34A853" d="M130.55 261.1c35.248 0 64.839-11.605 86.453-31.622l-41.196-31.913c-11.024 7.688-25.82 13.055-45.257 13.055-34.523 0-63.824-22.773-74.269-54.25l-1.531.13-40.298 31.187-.527 1.465C35.393 231.798 79.49 261.1 130.55 261.1"></path>
<path fill="#FBBC05" d="M56.281 156.37c-2.756-8.123-4.351-16.827-4.351-25.82 0-8.994 1.595-17.697 4.206-25.82l-.073-1.73L15.26 71.312l-1.335.635C5.077 89.644 0 109.517 0 130.55s5.077 40.905 13.925 58.602l42.356-32.782"></path>
<path fill="#EB4335" d="M130.55 50.479c24.514 0 41.05 10.589 50.479 19.438l36.844-35.974C195.245 12.91 165.798 0 130.55 0 79.49 0 35.393 29.301 13.925 71.947l42.211 32.783c10.59-31.477 39.891-54.251 74.414-54.251"></path>
</svg>Sign up with Google
</button>
</div>
<div class="text sign-up-text">
Already have an account? <a href="login.html">Login now</a>
</div>
</div>
</div>
</div>
</form>
</div>
</body>
</html>