-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
55 lines (52 loc) · 1.64 KB
/
index.php
File metadata and controls
55 lines (52 loc) · 1.64 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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<link rel="stylesheet" href="style/main.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/flexboxgrid/6.3.1/flexboxgrid.css">
</head>
<body>
<div class="container landing">
<div class="col-sm-12 middle-md">
<div class="bs-calltoaction bs-calltoaction-default">
<div class="row">
<div class="col-md-9 cta-contents">
<h1 class="cta-title">Citizen</h1>
<div class="cta-desc">
<p>Queue new customer.</p>
</div>
</div>
<div class="col-md-3 cta-button">
<a href="citizen.php" class="btn btn-lg btn-block btn-default">Start queuing!</a>
</div>
</div>
</div>
<div class="bs-calltoaction bs-calltoaction-primary">
<div class="row">
<div class="col-md-9 cta-contents">
<h1 class="cta-title">Organisation</h1>
<div class="cta-desc">
<p>Queue new customer representing an organisation.</p>
</div>
</div>
<div class="col-md-3 cta-button">
<a href="organisation.php" class="btn btn-lg btn-block btn-primary">Start queuing!</a>
</div>
</div>
</div>
<div class="bs-calltoaction bs-calltoaction-info">
<div class="row">
<div class="col-md-9 cta-contents">
<h1 class="cta-title">Anonymous</h1>
<div class="cta-desc">
<p>Queue an anonymous customer.</p>
</div>
</div>
<div class="col-md-3 cta-button">
<a href="anonymous.php" class="btn btn-lg btn-block btn-info">Start queuing!</a>
</div>
</div>
</div>
</div>
</body>
</html>