-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
95 lines (83 loc) · 1.54 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
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
<!DOCTYPE html>
<html>
<head>
<title>Blockchain Voting</title>
<meta charset="utf-8">
<meta name="viewport" content="initial-scale=1.0; maximum-scale=1.0; minimum-scale=1.0; user-scalable=no;" />
<style>
html,
body {
width: 98%;
height: 97%;
}
body {
text-align: center;
background: url('background.jpg') no-repeat center center fixed;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
}
table {
width: 60% height: 130px;
margin: auto;
text-align: center
}
< !__ table,
th,
td {
border: 1px solid #bcbcbc;
}
__>
.can {
width: 67%; height: 40px
}
.butt{
width: 60%;
}
}
</style>
</head>
<body>
<div>
<h1 style="color:black"> 6조 투표앱</h1>
</div>
<div>
<br><br>
<img src="main_logo.png">
</div>
<br>
<br>
<div>
<!--
<table>
<tr>
<td>
ID :
</td>
<td class="can">
<input type="text" name="id">
</td>
</tr>
<tr>
<td> PASSWORD : </td>
<td class="can">
<input type="password" name="pwd">
</td>
</tr>
</table>
-->
</div>
<br>
<div>
<center>
<table>
<td class = "butt"><input type="submit" value="login" onclick="location.href='vote_list.html'"></td>
</table>
</center>
</div>
<script src="js/jquery.min.js"></script>
<script src="index.js"></script>
<script src="https://code.jquery.com/jquery-3.1.1.slim.min.js"></script>
</body>
</html>