-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.html
71 lines (65 loc) · 3.21 KB
/
main.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
<!DOCTYPE html>
<html>
<head>
<title>Login</title>
<meta
name='viewport'
content='width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0'
/>
<meta content="text/html;charset=utf-8" http-equiv="Content-Type">
<meta content="utf-8" http-equiv="encoding">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" href="https://www.w3schools.com/w3css/4/w3.css">
<link rel="stylesheet" href="stylesheets/custom.css">
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/vue.js"></script>
<script src="https://unpkg.com/axios/dist/axios.min.js"></script>
<script src="https://unpkg.com/[email protected]/dist/vue-router.js"></script>
<!--Required Fonts-->
<link href="https://fonts.googleapis.com/css?family=Lobster" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Bangers" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Nanum+Pen+Script" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Kalam" rel="stylesheet">
<style>
*{
font-family: Arial, Helvetica, sans-serif;
}
.unchecked{
color:black;
}
.checked{
color: yellow;
}
</style>
</head>
<body>
<div class="w3-container" id="main" style="padding:0px!important">
<div class="w3-container w3-center" style="min-height:10vh; position:relative;">
<h1 style="font-family: 'Lobster', cursive;" class="w3-hide-large">ExM</h1>
<h1 style="font-family: 'Lobster', cursive;" class="w3-hide-small w3-hide-medium">ExM: Save Your Future</h1>
<div class="w3-display-container" style="position:absolute; top:0px; left:0px; width:100px; height:100%;" v-if="!login">
<button class="w3-btn w3-display-middle" @click="showMenu"> <i class="fa fa-bars w3-large" aria-hidden="true"></i>
</div>
</div>
<div class="w3-modal w3-animate-opacity w3-show" v-if="showNav">
<div class="w3-modal-content w3-card-4 w3-bar-block w3-center" @click="closeMenu" >
<button class="w3-bar-item w3-button w3-green w3-xxlarge" style="width:100%">Close X</button>
<router-link class="w3-bar-item w3-button" to="/">Home</router-link>
<router-link class="w3-bar-item w3-button" to="/user">User Settings</router-link>
<router-link class="w3-bar-item w3-button" to="/exp">Expenditure</router-link>
<router-link class="w3-bar-item w3-button" to="/savings">Savings</router-link>
<router-link class="w3-bar-item w3-button" to="/toDo">To-Do</router-link>
<router-link class="w3-bar-item w3-button" to="/toBuy">To-Buy</router-link>
<router-link class="w3-bar-item w3-button" to="/feedback">Feedback</router-link>
</div>
</div>
<div class="w3-center w3-column">
<noscript class="w3-red w3-jumbo">Enable JavaScript to Access Contents</noscript>
</div>
<div>
<router-view v-if="!login"></router-view>
</div>
<login v-if="login"></login>
</div>
<script src="javascripts/main.js"></script>
</body>
</html>