-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsignup.html
97 lines (57 loc) · 3.01 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
85
86
87
88
89
90
91
92
93
94
95
96
97
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>ForeverYou.com</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-T3c6CoIi6uLrA9TneNEoa7RxnatzjcDSCmG1MXxSR1GAsXEV/Dwwykc2MPK8M2HN" crossorigin="anonymous">
<link href="css/style.css" rel="stylesheet" />
</head>
<body id="signup" style="background-color: #eee">
<nav class="navbar navbar-expand-md navbar-dark bg-dark mb-4">
<div class="container-fluid">
<a class="navbar-brand" href="./">ForeverYou.com</a>
<div class="col-md-3 text-end" id="topbar-signup">
<a type="button" class="btn btn-outline-primary me-2" href="./login.html">Login</a>
<a type="button" class="btn btn-primary" href="./signup.html">Sign-up</a>
</div>
</div>
</nav>
<main>
<div class="card shadow-sm p-4 m-2">
<div class="col-lg-6 col-xxl-4 mb-5 mx-auto">
<h2>Get now your contact web-page</h2>
<p class="mb-5">Get for free your web-page to keep in contact with others, create your page just by signup with your email address or by a social account.</p>
<div class="d-grid gap-2">
<form class="needs-validation" novalidate="">
<div class="row g-3">
<div class="col-12">
<label for="username" class="form-label">Email</label>
<div class="input-group has-validation">
<input type="email" class="form-control" id="email" placeholder="[email protected]" required="">
<div class="invalid-feedback">
Your username is required.
</div>
</div>
</div>
<div class="col-12">
<label for="email" class="form-label">Password</label>
<input type="password" class="form-control" id="password" placeholder="">
<div class="invalid-feedback">
Please enter a valid email address for shipping updates.
</div>
</div>
</div>
<a class="w-100 btn btn-primary btn-lg mt-3" id="signupButton">Signup</a>
</form>
<hr />
<button id="signup-google-button" class="btn btn-outline-secondary" type="button">Signup with Google</button>
<button id="signup-facebook-button" class="btn btn-primary" type="button" disabled>Signup with Facebook</button>
</div>
</div>
</main>
<script src="https://code.jquery.com/jquery-3.7.1.min.js" integrity="sha256-/JqT3SQfawRcv/BIHPThkBvs0OEvtFFmqPF/lYI/Cxo=" crossorigin="anonymous"></script>
<script type="module" src="js/main.js"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-C6RzsynM9kWDrMNeT87bh95OGNyZPhcTNXj1NW7RuBCsyN/o0jlpcV8Qyq46cDfL" crossorigin="anonymous"></script>
</body>
</html>