-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
35 lines (35 loc) · 1.9 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<meta property="og:image" content="http://www.flatrocktech.com/sites/default/files/inline-images/frt-cover.png"/>
<title>Age | Verification</title>
<link rel="stylesheet" href="css//style.css">
<link rel="shortcut icon" type="image/png" href="./img/image001.png">
</head>
<body>
<div class="banner">
<form name="ageForm" id="ageForm" action="">
<input type="hidden" name="requiredAge" id="requiredAge" value="18">
<h1 class="flat uppercase">flat rock technology test task</h1>
</div>
<div class="form flex flex-01 flex-column">
<h1 class="bday uppercase">when's your birthday?</h1>
<div class="birthday-inputs">
<input class="birth-month field size-sm" input type="text" id="birthMonth"maxlength="2" placeholder="MM"/>
<input class="birth-day field size-sm" type="text" id="birthDay" maxlength="2" placeholder="DD"/>
<input class="birth-year field size-sm" type="text"id="birthYear" maxlength="4" placeholder="YY"/>
</div>
<p style="display: none" id="hidden" class=red>
Your must enter a valid birth date
</p>
<button class="btn-action size-md uppercase" type="submit" name="submit"><span>Enter</span></button>
<br/>
<h5 class="terms uppercase" a href="https://www.flatrocktech.com/privacy-policy">by submitting your date of birth you accept<span class="underline">our terms & conditions and our privacy</span class="underline"></h5>
</div>
</body>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js" type="text/javascript"></script>
<script src="js/scripts.js"></script>
</html>