-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsignup.html
More file actions
64 lines (64 loc) · 1.9 KB
/
signup.html
File metadata and controls
64 lines (64 loc) · 1.9 KB
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
<!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="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css"
integrity="sha512-iecdLmaskl7CVkqkXNQ/ZH/XLlvWZOJyj7Yy7tcenmpD1ypASozpmT/E0iPtmFIB46ZmdtAc9eNBvH0H/ZpiBw=="
crossorigin="anonymous"
referrerpolicy="no-referrer"
/>
<link rel="stylesheet" href="main.css" />
<title>Signup</title>
</head>
<body>
<section class="signup">
<h1 class="prev">
<a href="/index.html"><i class="fas fa-arrow-left"></i>go back</a>
</h1>
<div class="inner-signup">
<h1>Mark</h1>
<div class="social-icon">
<i class="fab fa-google" aria-hidden="true"></i>
<i class="fab fa-facebook-square" aria-hidden="true"></i>
</div>
<hr />
<form>
<input
type="text"
name="username"
placeholder="enter your fullname..."
required
/>
<input type="email" name="email" placeholder="enter your email" />
<input
type="tel"
name="telephone"
placeholder="enter your telephone"
/>
<input
type="password"
name="password"
placeholder="enter your password"
required
class="init-password"
/>
<input
type="password"
name="password"
placeholder="confirm your password"
required
class="final-password"
/>
<button type="submit">signup</button>
<a href="/login.html">already have an account?</a>
</form>
<div class="foot">
<p>Mark © Copyrights, 2023 INC.</p>
</div>
</div>
</section>
</body>
</html>