-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
75 lines (72 loc) · 3.57 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@400;700;900&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="style.css">
<title>Sign Up Form</title>
</head>
<body>
<main class="container">
<section class="left">
<header class="title">
<img src="https://cdn.statically.io/gh/TheOdinProject/curriculum/5f37d43908ef92499e95a9b90fc3cc291a95014c/html_css/project-sign-up-form/odin-lined.png" alt="">
<h1>Bookfy</h1>
</header>
<footer>
<p>Copyright © <strong>Ivan </strong> 2022</p>
</footer>
</section>
<section class="right">
<section class="header-description">
<h3 class="description">This is not a real online service! You know you need something like this in your life to help you realize your deepest dreams.</h3>
<h3>Sign up now to get started.</h3>
<h3>You know you want to.</h3>
</section>
<section class="form-container">
<form action="">
<fieldset>
<h3 class="description">Let's do this!</h3>
<div class="input-container">
<label for="Fname">First Name</label>
<input id="Fname" name ="Fname" type="text">
</div>
<div class="input-container">
<label for="Lname">Last Name</label>
<input id="Lname" name ="Lname" type="text">
</div>
<div class="input-container">
<label for="Email">Email</label>
<input id="Email" name ="Email" type="email">
</div>
<div class="input-container">
<label for="phoneNumber">Phone Number</label>
<input id="phoneNumber" name ="phoneNumber" type="number" maxlength="12" minlength="4">
</div>
<div class="input-container">
<label for="Password">Password</label>
<input id="Password" name ="Password" type="password">
</div>
<div class="input-container">
<label for="CPassword">Confirm Password</label>
<input id="CPassword" name ="CPassword" type="password">
</div>
</fieldset>
<div class="button-container">
<button type="submit">Create Account</button>
<p>Already have an account? <a>Log in</a></p>
</div>
</form>
</section>
</section>
</main>
<footer class="mobileFooter">
<p>Copyright © <strong>Ivan </strong> 2022</p>
</footer>
</body>
</html>