-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
97 lines (97 loc) · 3.71 KB
/
index.html
File metadata and controls
97 lines (97 loc) · 3.71 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>evoto</title>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/semantic-ui/2.2.6/semantic.min.css">
<link rel="stylesheet" href="styles/main.css">
<link rel="stylesheet" href="styles/pricing-table.css">
</head>
<body>
<div class="jumbo">
<div class="ui container">
<img src="images/logo.png"/>
</div>
<p>A straight forward, simple to use, electronic voting system for organisations</p>
</div>
<div class="ui container">
<h2>Monthly Subscriptions</h2>
<div id="pricing-table" class="four">
<div class="plan">
<h3><i class="circle bronze icon"></i> Bronze<span class="double">£500<small><br/>/mo</small></span></h3>
<a class="ui signup button" href=""><i class="checkmark icon"></i> Sign up</a>
<ul>
<li><b>5</b> Question Options</li>
<li><b>1</b> Ballot Question</li>
<li><b>1</b> Simultaneous Votes</li>
<li><b>100</b> Voters per Vote</li>
<li>Mon-Fri Support</li>
<li>48 Hour Response Time</li>
</ul>
</div>
<div class="plan" id="most-popular">
<h3><i class="circle silver icon"></i> Silver<span class="double">£1000<small><br/>/mo</small></span></h3>
<a class="ui signup button" href=""><i class="checkmark icon"></i> Sign up</a>
<ul>
<li><b>10</b> Question Options</li>
<li><b>5</b> Ballot Question</li>
<li><b>10</b> Simultaneous Votes</li>
<li><b>500</b> Voters per Vote</li>
<li>Mon-Fri Support</li>
<li>24 Hour Response Time</li>
</ul>
</div>
<div class="plan">
<h3><i class="circle gold icon"></i> Gold<span class="double">£1500<small><br/>/mo</small></span></h3>
<a class="ui signup button" href=""><i class="checkmark icon"></i> Sign up</a>
<ul>
<li><b>20</b> Question Options</li>
<li><b>10</b> Ballot Question</li>
<li><b>20</b> Simultaneous Votes</li>
<li><b>1000</b> Voters per Vote</li>
<li>7 Day Support</li>
<li>24 Hour Response Time</li>
<li>Free Import with 1 year subscription</li>
</ul>
</div>
<div class="plan">
<h3><i class="circle platinum icon"></i> Platinum<span class="double">£5000<small><br/>/mo</small></span></h3>
<a class="ui signup button" href=""><i class="checkmark icon"></i> Sign up</a>
<ul>
<li><b>50</b> Question Options</li>
<li><b>50</b> Ballot Question</li>
<li><b>50</b> Simultaneous Votes</li>
<li><b>5000</b> Voters per Vote</li>
<li>7 Day Support</li>
<li>12 Hour Response Time</li>
<li>Free Import with 1 year subscription</li>
</ul>
</div>
</div>
</div>
<div class="ui container">
<h2>Services</h2>
<div id="pricing-table" class="small three">
<div class="plan">
<h3>Initial Set up<span>£500</span></h3>
<ul>
<li>Setting up and integrating evoto with your current platforms</li>
</ul>
</div>
<div class="plan" id="most-popular">
<h3>Existing User Import<span>£1000</span></h3>
<ul>
<li>A one time import of user accounts into evoto which can then be used to log in from anywhere</li>
</ul>
</div>
<div class="plan">
<h3>Existing Account Integration<span>£2000</span></h3>
<ul>
<li>Fully integrate evoto and your existing user system</li>
</ul>
</div>
</div>
<script src="https://cdn.jsdelivr.net/semantic-ui/2.2.6/semantic.min.js"></script>
</body>
</html>