-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy paththanks.php
68 lines (60 loc) · 1.29 KB
/
thanks.php
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
<!DOCTYPE html>
<html>
<head>
<title>eVote</title>
<link rel="icon" href="favicon.jpg">
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
body {
margin: 0;
font-family: Arial, Helvetica, sans-serif;
}
.hero-image {
background-image: url("evote3.jpg");
background-color: #cccccc;
height: 680px;
background-position: center;
background-repeat: no-repeat;
background-size: cover;
position: relative;
}
.hero-text {
text-align: center;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
color: black;
}
</style>
<style>
.button {
background-color: purple; /* 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%;}
</style>
</head>
<body>
<div class="hero-image">
<div class="hero-text">
<h1 style="font-size:50px">Thanks!</h1>
<h3>Electronic Voting Portal</h3>
<form action = "logout.php">
<button class="button button3" type="submit">Logout</button>
</form>
</div>
</div>
</body>
<footer>Proudly developed by Salako Moses</footer>
</html>