-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathags.php
More file actions
129 lines (107 loc) · 2.82 KB
/
ags.php
File metadata and controls
129 lines (107 loc) · 2.82 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
<html>
<head>
<meta charset="utf-8" />
<title>eVote Dashboard</title>
<link rel="icon" href="favicon.jpg">
<link rel="icon" href="img/favicon.png">
<link href="mdl/material.css" rel="stylesheet">
<link href="css/jquery-ui.css" rel="stylesheet">
<link href="css/jquery-ui.min.css.css" rel="stylesheet">
<link href="css/font.css" rel="stylesheet">
<link href="css/alphago.css" rel="stylesheet">
<h2 style="text-align:center; color:black;">Welcome Voters!</h2>
<style>
#desc{
top: 100px;
height: 360px;
position : absolute;
left: 9%;
width: 22%;
opacity: 0.9;
}
#desc1{
top: 100px;
height: 360px;
position : relative;
left: 39%;
width: 22%;
opacity: 0.9;
}
#desc2{
top: 100px;
height: 360px;
position : absolute;
left: 69%;
width: 22%;
opacity: 0.9;
}
.button {
background-color: black; /* Green */
border: none;
color: white;
padding: 15px 32px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
margin: 4px 2px;
cursor: pointer;
}
.button1 {width: 250px;}
.button2 {width: 50%;}
.button3 {width: 100%;}
input[type=submit] {
width: 100%;
background-color: green;
color: white;
padding: 14px 20px;
margin: 8px 0;
border: none;
border-radius: 4px;
cursor: pointer;
}
input[type=submit]:hover {
background-color: #45a049;
}
</style>
</head>
<body class="" style="background-image:url('evote4.jpg'); background-size:cover;">
<div class="cards mdl-card mdl-shadow--4dp" id="desc">
<h4 class="title"><b>A.G.S Candidate1</b></h4>
<hr>
<img src = "avatar.png" width ="270px" height="170px" >
<hr>
<form action = "">
<input type="submit" name="submit "value="Validate">
</form>
</div>
<div class="cards mdl-card mdl-shadow--4dp" id="desc1">
<h4 class="title"><b>A.G.S Candidate2</b></h4>
<hr>
<img src = "avatar.png" width ="270px" height="170px" >
<hr>
<form action = "">
<input type="submit" name="submit "value="Validate">
</form>
</div>
<div class="cards mdl-card mdl-shadow--4dp" id="desc2">
<h4 class="title"><b>A.G.S Candidate3</b></h4>
<hr>
<img src = "avatar.png" width ="270px" height="170px" >
<hr>
<form action = "">
<input type="submit" name="submit "value="Validate">
</form>
</div>
<br>
<br>
<br>
<br>
<br>
<div>
<form action = "sport.php">
<button class="button button3" type="submit">Proceed</button>
</form>
</div>
</body>
</html>