-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathchoose_date_attendance.html
More file actions
67 lines (56 loc) · 1.56 KB
/
choose_date_attendance.html
File metadata and controls
67 lines (56 loc) · 1.56 KB
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
<!-- all your CSS and JS code, including the stuff -->
<!-- to handle the datepicker formatting -->
<style media="screen" xmlns="http://www.w3.org/1999/html">
body{
background-color:#00ffff;
}
form{
margin:50px;
font-size:20px;
}
div{
margin:30px;
margin-top:40px;
}
label{
font-weight:bold;
margin-right:10px;
}
span{
margin-right:30px;
}
.button {
display: inline-block;
padding: 15px 25px;
font-size: 24px;
cursor: pointer;
text-align: center;
text-decoration: none;
outline: none;
color: #fff;
background-color: #4CAF50;
border: none;
border-radius: 15px;
box-shadow: 0 9px #999;
align-items: center;
position: relative;
left: 570px;
}
.button:hover {background-color: #3e8e41}
.button:active {
background-color: #3e8e41;
box-shadow: 0 5px #666;
transform: translateY(4px);
position: relative;
left: 570px;
}
h1
{color:blue;
text-align: center;
}
</style>
<form action="/main_attendance_page" method="post">
{{ form.dt(class='datepicker') }}
{{ form.hidden_tag() }}
<input type="submit"/></input>
</form>