-
Notifications
You must be signed in to change notification settings - Fork 0
/
login.html
69 lines (65 loc) · 2.71 KB
/
login.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Floating Label Input</title>
<link rel="stylesheet" href="styles/style1.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css">
<link rel="stylesheet" href="mediaqueries.css">
</head>
<body>
<div class="login-container">
<div id="logo">
<img src="https://github.com/DharshiBalasubramaniyam/ice-cream-parlour-website/blob/master/images/logo.png?raw=true" width="15%"></img>
</div>
<h1>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">Username</div>
<input type="text" class="input-field">
</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">
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 class="signin-btn">
<button>Continue</button>
</div>
<div id="continue-with">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>
<button><img src="images/social-icons/bitbucket.png" width="20px" height="20px">Bitbucket</button>
<button><img src="images/social-icons/salesforce.png" width="20px" height="20px">Salesforce</button>
<div class="sign-in-link">
<span>Already have an account?</span>
<a href="signup.html">Sign in</a>
</div>
</div>
</div>
</body>
<script src="script/login.js"></script>
</html>