-
Notifications
You must be signed in to change notification settings - Fork 0
/
join.html
85 lines (78 loc) · 2.32 KB
/
join.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
<!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>2Hs | Join_street</title>
<link rel="icon" href="img_img/icon-icon.svg" />
<link rel="preconnect" href="https://fonts.gstatic.com" />
<link
href="https://fonts.googleapis.com/css2?family=Poppins:wght@400;500&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" href="css/join.css" />
<link
rel="stylesheet"
href="https://use.fontawesome.com/releases/v5.15.2/css/all.css"
integrity="sha384-vSIIfh2YWi9wW0r9iZe7RJPrKwp6bG+s9QZMoITbCckVJqGCCRhc+ccxNcdpHuYu"
crossorigin="anonymous"
/>
</head>
<body>
<header>
<h2 class="logo">2Hs</h2>
<button class="toggle"></button>
</header>
<div class="menu">
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="#">Products</a></li>
<li><a href="shop.html">Shop</a></li>
<li><a href="#">Login</a></li>
<li><a href="#">Join</a></li>
<li><a href="expl.html">Explore</a></li>
<li><a href="#">Learn More</a></li>
</ul>
</div>
<form id="form" netlify>
<div id="form-content">
<div class="name-input">
<i class="fas fa-user"></i>
<input
id="username"
type="text"
name="username"
placeholder="Username"
/>
</div>
<div class="email-input">
<i class="fas fa-envelope"></i>
<input id="email" type="email" name="email" placeholder="Email" />
</div>
<div class="password-input">
<i class="fas fa-lock"></i>
<input
id="password"
type="password"
name="password"
placeholder="Password"
/>
</div>
<input type="submit" value="Join Street" />
</div>
</form>
<!-- <div class="wrap">
<div class="msg">
<p>TheUser has sucessfully become a member</p>
<div class="to_home">
<button>
<i class="fas fa-arrow-left"></i>
</button>
<p>back to home</p>
</div>
</div>
</div> -->
<script src="js/join.js"></script>
</body>
</html>