This repository has been archived by the owner on Dec 12, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
56 lines (50 loc) · 2.67 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
<!DOCTYPE html>
<html>
<head>
<title>School Price</title>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<meta charset="UTF-8">
<link rel="stylesheet" type="text/css" href="style.css">
<!-- include the script -->
<script src="alertify/alertify.min.js"></script>
<!-- include the style -->
<link rel="stylesheet" href="alertify/css/alertify.min.css" />
<!-- include a theme -->
<link rel="stylesheet" href="alertify/css/themes/default.min.css" />
<link rel="icon" type="image/ico" href="img/favicon.ico">
</head>
<body>
<h1>Should I skip class ?</h1>
<div id="form-main">
<div id="form-div">
<div class="form" id="form1">
<p class="name">
<label for="start">School start date : </label>
<input name="name" type="date" class="validate[required,custom[onlyLetter],length[0,100]] feedback-input" placeholder="Start Date" id="start" />
</p>
<p class="name">
<label for="end">School end date : </label>
<input name="name" type="date" class="validate[required,custom[onlyLetter],length[0,100]] feedback-input" placeholder="End Date" id="end" />
</p>
<p class="name">
<label for="priceYear">Price per year : </label>
<input name="name" type="number" class="validate[required,custom[onlyLetter],length[0,100]] feedback-input" placeholder="Price Per Year" id="priceYear" />
</p>
<p class="name">
<label for="holidayWeeks">Number of week holidays: </label>
<input name="name" type="number" class="validate[required,custom[onlyLetter],length[0,100]] feedback-input" placeholder="Number of week of holiday you have" id="holidayWeeks" />
</p>
<p class="name">
<label for="classPerDay">Class per day (average): </label>
<input name="name" type="number" class="validate[required,custom[onlyLetter],length[0,100]] feedback-input" placeholder="Class Per Day (Average)" id="classPerDay" />
</p>
<div class="submit" id="submit">
<input type="submit" value="SEND" id="button-blue"/>
<div class="ease"></div>
</div>
</div>
</div>
</div>
</body>
</html>
<script src="./assets/js/app.js"></script>