-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
90 lines (73 loc) · 3.41 KB
/
index.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
86
87
88
89
<!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> signup</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.1.2/css/all.min.css">
<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=Archivo:wght@500;700;900&display=swap" rel="stylesheet">
<link rel="stylesheet" href="./css/index.css"/>
</head>
<body>
<section id="form" class="set">
<div class="left" id="formdiv">
<form id="mainform">
<h4 class="head">Free Pineapple drink @ 50% patronage monthly signup below</h4>
<label class="label">
<span>First Name</span>
<div class="last_name">
<input id="firstname" type="text"/>
<i class="fa-solid fa-user nameicon"></i>
</div>
</label>
<label class="label">
<span class="span">Last Name</span>
<div class="last_name">
<input id="lastname" type="text"/>
<i class="fa-solid fa-user nameicon"></i>
</div>
</label>
<label class="label">
<span>Email</span>
<div class="last_name">
<input id="email" type="email"/>
<i class="fa-regular fa-envelope nameicon"></i>
</div>
</label>
<label class="label ">
<span>Password</span>
<div class="password-input-wrapper">
<input id="pass-word" type="password"/>
<button type="button" data-password-lock="isunlocked" class="password_btn">
<i class="fa-regular fa-eye-slash locked"></i>
<i class="fa-regular fa-eye unlocked"></i>
</button>
</div>
</label>
<label class="label password-label">
<span>Confirm Password</span>
<div class="password-input-wrapper">
<input id="confirm-password" type="password"/>
<button type="button" data-password-lock="isunlocked" class="password_btn">
<i class="fa-regular fa-eye-slash locked"></i>
<i class="fa-regular fa-eye unlocked"></i>
</button>
</div>
</label>
<p class="p1">By clicking this button, you agree to our private policy and trems of use</p>
<input onclick="fun()" type="submit" value="Signup" class="signup-btn" >
<p class="p2">Already have an account
<p><a href="signin.html" class="signin-btn">sign in</a></p>
</form>
</div>
<div class="right" >
<h1 id="dateTime" class="clock"> clock</h1>
<!-- <img src="/images/cartoon-image4.jpg" alt="laptop image" class="cartoon-item"> -->
</div>
</section>
<script src="./js/index.js"></script>
</body>
</html>