-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsignup.html
65 lines (65 loc) · 2.46 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
<!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="src/main.css">
<script src="bootstrap.bundle.min.js"></script>
<title>Sign up</title>
</head>
<body class="bg-black fade-in signup-body">
<div id="signup-page-img-container">
<img class="img-fluid signup-page-img" src="img/space_hotel.jpeg" alt="space hotel">
</div>
<main id="signup-main">
<div class="bg-secondary text-center" >
<section>
<a href="index.html" aria-label="Home page">
<img src="img/zgg_logo.png" width="100" alt="logo">
</a>
<h1>Get ready to explore the galaxy</h1>
<p>Discover the world best travel agency to space.</p>
<p>Aready have a account?
<a href="#" aria-label="Login"> Login In</a>
</p>
</section>
<form class="px-4 py-4" id="signup-form">
<div class="mx-4 my-3 ml">
<input class="form-control" type="text" name="name" placeholder="Name" required>
</div>
<div class="mx-4 my-3">
<input class="form-control" type="text" name="lastname" placeholder="Last name" required>
</div>
<div class="mx-4 my-3">
<input class="form-control" type="email" name="email" placeholder="Email" required>
</div>
<div class="mx-4 my-3">
<input class="form-control" type="password" name="password" placeholder="Password" required>
</div>
<div class="mx-4 my-3">
<input class="form-control" type="password" name="cpassword" placeholder="Confirme password" required>
</div>
<div class="d-grid col-6 mx-auto">
<button class="btn btn-primary" type="submit">Submit</button>
</div>
</form>
<hr class="bg-primary">
<img class="s-icon p-1" src="icons/facebook.svg" alt="facebook-icon">
<img class="s-icon p-1" src="icons/instagram.svg" alt="instagram-icon">
<img class="s-icon p-1" src="icons/threads.svg" alt="threads-icon">
<ul class="d-flex justify-content-center">
<li class="p-1">
<a href="#">Private Policy</a>
</li>
<li class="p-1">
<a href="#">Terms Of Services</a>
</li>
</ul>
<p>
Made by: <a href="https://github.com/amchatman" aria-label="amchatman github page">amchatman</a>
</p>
</div>
</main>
<script src="src/main.js"></script>
</body>
</html>