-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
44 lines (38 loc) · 1.83 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
<!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="./style.css">
<title>Registration form</title>
</head>
<body>
<main class="main">
<div class="main-text">
<h1>Learn to code by watching others</h1>
<p>See how experienced developers solve problems in real-time.
Watching scripted tutorials is great, but understanding how developers think is invaluable.</p>
</div>
<div class="main-form">
<div class="free-trial">
<p>Try it free 7 days <span>then $20/mo. thereafter</span></p>
</div>
<form action="" class="form">
<input type="text" name="fname" class="fname" placeholder="First Name" required>
<span class="error"><em>First Name cannot be empty</em></span>
<input type="text" name="lname" class="lname" placeholder="Last Name" required>
<span class="error"><em>Last Name cannot be empty</em></span>
<input type="email" name="email" class="email" placeholder="Email Address" required>
<span class="error"><em>Looks like this is not an email</em></span>
<input type="password" name="pass"
class="pass" required placeholder="Password"
pattern="(?=.*\d)(?=.*[a-z])(?=.*[A-Z]).{6,}">
<span class="error"><em>Password cannot be empty</em></span>
<input type="submit" value="CLAIM YOUR FREE TRIAL">
<p class="terms">By Clicking the buttons you are agreeing to our <span class="terms-red">Terms and Services</span></p>
</form>
</div>
</main>
</body>
</html>