-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathemail-signup.html
34 lines (34 loc) · 1.2 KB
/
email-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
<!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">
<link rel="icon" href="./img/icon.png">
<link rel="stylesheet" href="./css/email-signup.css">
<title>Sign Up | Awit Shop</title>
</head>
<body>
<main class="signup">
<div class="signup-container">
<div class="signup-header">
<h1>Sign Up</h1>
<h4>Already have an account? <span><a href="login.html">Log In</a></span></h4>
</div>
<div class="google">
<img src="https://img.icons8.com/bubbles/50/000000/google-logo.png"/>
<a href="login.html">Sign up with Google</a>
</div>
<div class="or">
<h5>or</h5>
</div>
<div class="email">
<form action="verification.html">
<input type="email" name="" id="" placeholder="Email" required>
<button type="submit">Sign up</button>
</form>
</div>
</div>
</main>
</body>
</html>