-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex1.html
117 lines (91 loc) · 3.3 KB
/
index1.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
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
<!DOCTYPE html>
<html>
<head>
<title>VOTING SYSTEM</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<link rel="stylesheet" type="text/css" href="style.css">
<meta name="viewport" content="width=device-width, initial-scale=1">
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
<link href="https://fonts.googleapis.com/css?family=Boogaloo" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Neuton" rel="stylesheet">
<script src="https://cdn.rawgit.com/ethereum/web3.js/develop/dist/web3.js"></script>
<script src="https://code.jquery.com/jquery-3.1.1.slim.min.js"></script>
<script src="./index.js"></script>
</head>
<body style="background-color: white;">
<h1 style="
text-align: center;
color: #5487d8;
font-family: 'Boogaloo', cursive;
font-size: 60px;">
DECENTRALIZED VOTING SYSTEM
</h1>
<h2 style="
color:#8e2a34;
text-align:
center;font-family: 'Neuton', serif;">
SELECT YOUR CANDIDATE
</h2>
<div class="container">
<div class="row" style="
background:linear-gradient(to bottom right,#4e84db,white);
border-radius: 10px;
border: 2px solid #5487d8;
padding-top: 10px;
padding-bottom: 10px;">
<div class="row" style="margin-left: 100px;">
<div class="col-sm-4">
<img src="images\123.png" style="width: 180px;height: 120px;">
<p style="color:black;"><b>RAMESH KUMAR</b></p>
<img src="images\p1.png" style="height: 50px;width: 80px;margin-right: 20px;">
<input type="radio" name="r1" value="1">
</div>
<div class="col-sm-4">
<img src="images\234.png" style="width: 180px;height: 120px;">
<p style="color: black;"><b>BHARAT SM</b></p>
<img src="images\p2.png" style="height: 50px;width: 80px;margin-right: 20px;">
<input type="radio" name="r1" value="2">
</div>
<div class="col-sm-4">
<img src="images\345.png" style="width: 180px;height: 120px;">
<p style="color:black;"><b>SURYA A L</b></p>
<img src="images\p3.jpg" style="height: 50px;width: 80px;margin-right: 20px;">
<input type="radio" name="r1" value="3" >
</div>
</div>
<br>
<br>
<br>
<div class="row" style="margin-left: 100px;">
<div class="col-sm-4">
<img src="images\456.png" style="width: 180px;height: 120px;">
<p style="color: black;"><b>NIKITA</b></p>
<img src="images\p4.jpg" style="height: 50px;width: 80px;margin-right: 20px;">
<input type="radio" name="r1" value="4">
</div>
<div class="col-sm-4">
<img src="images\567.ico" style="width: 180px;height: 120px;">
<p style="color: black;"><b>LAXMI J S </b></p>
<img src="images\p5.jpg" style="height: 50px;width: 80px;margin-right: 20px;">
<input type="radio" name="r1" value="5">
</div>
<div class="col-sm-4">
<img src="images\567.jpg" style="width: 180px;height: 120px;">
<p style="color: black;"><b>RAM R T</b></p>
<img src="images\p6.jpg" style="height: 50px;width: 80px;margin-right: 20px;">
<input type="radio" name="r1" value="6" >
</div>
</div>
</div>
</div>
<br>
<a href="dashboard.html" id="result" onclick="voteForCandidate()" style="margin-left: 600px;margin-right: 600px;
text-align: center;
box-shadow: 3px 5px 4px;
border-radius: 8px;
font-size: 30px;background:lightblue;">SUBMIT</a>
<br>
<br>
</body>
</html>