-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsignup.html
84 lines (69 loc) · 2.78 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
73
74
75
76
77
78
79
80
81
82
83
84
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>ICYCO - SIGN-UP</title>
<link rel="stylesheet" href="styles/styles.css">
<link rel="stylesheet" href="styles/style2.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css">
</head>
<body>
<!-- Preloader -->
<div id="preloader">
<img src="images/logo.png" alt="Preloader" class="preloader-icon">
<p class="loading-text">Loading...</p>
</div>
<!-- scroll progress -->
<div class="scroll-progress"></div>
<a href="./index.html">
<div id="logo">
<img src="https://github.com/DNX EMPIREalasubramaniyam/ice-cream-parlour-website/blob/master/images/logo.png?raw=true"
width="15%"></img>
</div>
</a>
<h1 style="text-align: center; margin-bottom: 20px;">Sign up with IcyCo</h1>
<form>
<div id="name-fields">
<div id="first-name-field">
<div class="input-field-header">First name</div>
<input type="text" class="input-field">
</div>
<div id="last-name-field">
<div class="input-field-header">Last name</div>
<input type="text" class="input-field">
</div>
</div>
<div class="input-fields">
<div class="input-field-header">Email</div>
<input type="email" class="input-field">
</div>
<div class="input-fields">
<div class="input-field-header">Password</div>
<div class="password-container">
<input type="password" class="input-field" id="password-input-field">
<i class="fa-solid fa-eye-slash" id="toggle-password"></i>
</div>
</div>
</form>
<div class="terms">
<div class="signin-btn">
<button>Continue</button>
</div>
<br>
By clicking Continue or registering through a third party you accept the Icyco
<a href="#">Terms of Use and acknowledge the Privacy Statement and Cookie Policy</a>
</div>
<div id="line-container">
<span>Already have an account?</span><a href="./login.html" class="register-now-link">Login</a>
<div class="sign-in">or continue with</div>
</div>
<div class="social-links">
<button><img src="images/social-icons/google.png" class="imgs" width="20px" height="20px">Google</button>
<button><img src="images/social-icons/github.png" width="20px" height="20px">GitHub</button>
</div>
<script src="script/login.js"></script>
<script src="./script/nav.js"></script>
<script src="./script/topscrollindicator.js"></script>
</body>
</html>