-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
53 lines (50 loc) · 1.59 KB
/
Copy pathindex.html
File metadata and controls
53 lines (50 loc) · 1.59 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<script src="./app.js" defer></script>
<title>Bank App</title>
</head>
<body>
<div id="app">Loading...</div>
<template id="login" title="Login Page-Bank App">
<!-- <title>Login Page- Bank App</title> -->
<h1>Bank App</h1>
<section>
<a href="/dashboard" onclick="onLinkClick(event)">Login</a>
<div><a href="/credit" onclick="onLinkClick(event)">Goto App Credits</a></div>
</section>
</template>
<template id="dashboard" title="Dashbord-Bank App">
<header>
<h1>Bank App</h1>
<a href="/login" onclick="onLinkClick(event)">Logout</a>
</header>
<section>
Balance: 100$
</section>
<section>
<h2>Transactions</h2>
<table>
<thead>
<tr>
<th>Date</th>
<th>Object</th>
<th>Amount</th>
</tr>
</thead>
<tbody></tbody>
</table>
</section>
</template>
<template id="credit" title="Credit- Bank App">
<section>
<h1>Bank App</h1>
<a href="/login">Login</a>
<p>The lessons were written with ♥️ by <a href="https://twitter.com/sinedied" target="_blank">Yohan Lasorsa</a></p>
</section>
</template>
</body>
</html>