-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathuserpage.html
32 lines (31 loc) · 1.05 KB
/
userpage.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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" type="text/css" href="./node_modules/bulma/css/bulma.css">
<link rel="stylesheet" type="text/css" href="./node_modules/@fortawesome/fontawesome-free/css/all.css">
<link rel="stylesheet" type="text/css" href="./assets/css/checkbox.min.css">
</head>
<body>
<center>
<nav class="nav has-shadow">
<div>
<a class="nav-item" id="exit">
<span class="icon"><i class="fa fa-angle-left"></i></span>
<span>Back</span>
</a>
</div>
</nav>
<div class="content" id="divelist">
</div>
</center>
<script>
var $ =require('jquery');
const remote = require('electron').remote;
$('#exit').on('click',function(){
var window = remote.getCurrentWindow();
window.close();
});
</script>
<script src="./assets/js/userpage.js"></script>
</body>
</html>