-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
73 lines (69 loc) · 3.42 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
<!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="stylesheet" href="./css/styles.css">
<link rel="icon" href="./images/logo.jpg">
<title>Sign-Up Form</title>
</head>
<body>
<div class="container">
<!-- left side -->
<div class="sidebar">
<div class="logo">
<img src="./images/logo.jpg" alt="cat-logo">
<h1>CatsBook</h1>
</div>
<div class="credit-link">
<p>Photo by <a href="https://www.instagram.com/gaellemarcel_stilllife">Gaelle Marcel</a> on <a href="https://www.unsplash.com">Unsplash</a></p>
</div>
</div>
<!-- right side -->
<div class="form-side">
<div class="form-title">
<p>It's new Era of Cat networking! Let's discover who has broken the vase today!</p>
<p>Meown-Up to get started!</p>
</div>
<form action="#" method="post">
<div class="form-container">
<p>Let's do this</p>
<div class="form-row">
<label for="fname">First Name</label>
<input type="text" name="fname" id="fname" required>
</div>
<div class="form-row">
<label for="lname">Last Name</label>
<input type="text" name="lname" id="lname" required>
</div>
<div class="form-row">
<label for="email">Email</label>
<input type="email" name="email" id="email" required>
</div>
<div class="form-row">
<label for="phone">Phone Number</label>
<input type="tel" name="phone" id="phone" required>
</div>
<div class="form-row">
<label for="pass">Password</label>
<input type="password" name="pass" id="pass" pattern="^(?=.*\d)(?=.*[a-z])(?=.*[A-Z])(?!.*\s).*$" title="Your password must contain UpperCase, LowerCase and Number" required>
<div class='error-wrapper'>
<div class='pass-error-msg'>* Passwords do not match</div>
</div>
</div>
<div class="form-row">
<label for="pass-confirm">Confirm Password</label>
<input type="password" name="pass-confirm" id="pass-confirm" required>
</div>
</div>
<div class="button-container">
<button type="submit">Create Account</button>
<p>Already have an Meowccount? <a href="#">Log in</a></p>
</div>
</form>
</div>
</div>
<script src="./js/script.js"></script>
</body>
</html>