forked from apu52/Travel_Website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
registerPage.html
85 lines (70 loc) · 4 KB
/
registerPage.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" />
<title>Registration Page </title>
<meta name="viewport" content="width=device-width, initial-scale=
1.0", maximum-scale="1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" />
<link rel="stylesheet" href="registerPage.css">
<link rel="icon" type="image/x-icon" href="favicon.ico"/>
</head>
<body>
<header class="registration-header">
<a href="index.html"><img src="./img/Screenshot 2024-01-23 003448.png" style="width: 130px; border-radius: 6px; margin-top: 20px; margin-left: 20px;"></a>
<div class="container">
</div>
<main>
<section class="login-section--display">
<div class="back">
<div class="registration">
<div class="grid-two--column">
<div class="form-text">
<h2>Let's Start</h2>
<p>Enter your information to register your account<p>
</div>
<!-- Registration -->
<div class="registration-form">
<h2>Create Account</h2>
<div class="social-icons">
<a href="https://accounts.google.com/v3/signin/identifier?ifkv=ASKXGp3o7JbWY-Xl_hjXMSHncDJR5Bg1tJjR-AcPnUkBcdPTNTLi-oYd-rV3dgIaufZcXA-T1n6HuQ&flowName=GlifWebSignIn&flowEntry=ServiceLogin&dsh=S604814220%3A1705302051981588&theme=glif" target="_blank">
<i class="fa-brands fa-google"></i></a>
<a href="" target="_blank">
<i class="fa-brands fa-github"></i></a>
<a href="" target="_blank">
<i class="fa-brands fa-facebook"></i>
</a>
<a href="" target="_blank">
<i class="fa-brands fa-instagram"></i>
</a>
</div>
<p>or</p>
<form action="#">
<div class="input-field">
<label for="username">
<input type="text" name="#" id="username" placeholder="Name">
</label></div>
<div class="input-field">
<label for="Email">
<input type="email" name="#" id="Email" placeholder="Email">
</label></div>
<div class="input-field">
<label for="Password">
<input type="password" name="#" id="Password" placeholder="Password">
</label>
</div>
<div class="input-field">
<input type="submit" value="register">
</div>
</form>
</div>
</div>
</div>
</div>
</div>
</section>
</main>
</header>
</body>
</html>