-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
72 lines (63 loc) · 2.65 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Login</title>
<meta charset="UTF-8">
<meta content="ie=edge" http-equiv="x-ua-compatible">
<meta content="report, reporter, ireporter, timothy" name="keywords">
<meta content="Timothy Fadayini" name="author">
<meta content="Incidence Reporting Application" name="description">
<meta content="width=device-width, initial-scale=1" name="viewport">
<link rel="stylesheet" href="./UI/assets/css/main.css">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.5.0/css/all.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/3.7.0/animate.min.css">
</head>
<body>
<div class="wrapper-harsh bg-img" id="app">
<div class="max-width">
<div class="main-content card card-full transparent no-border">
<div class="card card-xl left-offset-1 transparent top-offset-1 no-border right-offset-1">
<h4 class="font-xl">
iReporter
</h4>
<p class="top-offset-2 label font-sm">
Corruption is a huge bane to Africa’s development. African countries must develop novel and
localised solutions that will curb this menace, hence the birth of iReporter.
</p>
<p class="label font-xs">
iReporter enables any/every citizen to bring any form of corruption to the notice of appropriate authorities and the
general public. Users can also report on things that needs government intervention.
</p>
<div class="card card-full no-border transparent text-align-center">
<button @click="openPage('sign-up')" class="button btn-md right-offset-1 btn-xl-height top-offset-2 bottom-offset-2">Sign Up</button>
<button @click="openPage('login')" class="button btn-md btn-xl-height top-offset-2 bottom-offset-2">Login</button>
</div>
</div>
</div>
<footer>
<h4 class="font-smallest label text-white">© 2018. Timothy Mee ---- iReporter</h4>
</footer>
</div>
</div>
<script src="./UI/assets/js/vue.js" type="text/javascript"></script>
<script type="text/javascript">
new Vue({
el: '#app',
data(){
return {
}
},
methods:{
openPage(name){
window.location.href = `./UI/${name}.html`;
}
},
mounted(){
}
})
</script>
</body>
</html>
<!--<script type="text/javascript">-->
<!--window.location.replace("UI/sign-up.html");-->
<!--</script>-->