-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex_alt.html
74 lines (51 loc) · 2.56 KB
/
index_alt.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
73
74
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>XNAT Desktop Client</title>
<link rel="stylesheet" href="node_modules/bootstrap/dist/css/bootstrap.min.css">
<link rel="stylesheet" href="https://ajax.googleapis.com/ajax/libs/jqueryui/1.12.1/themes/cupertino/jquery-ui.css">
<link href="assets/css/style.css" rel="stylesheet">
</head>
<body>
<header id="header_menu">
<a href="#home" class="logo-header"><img src="assets/images/logo-header.png"></a>
<span id="version-number" style="position: relative; float: left; padding: 8px 0; color: #fff"></span>
</header>
<main class="content js-content">
<section class="section js-section u-category-native-ui">
<div class="container-fluid">
<div class="row">
<div class="logo col-sm-12">
<p class="text-center"><img src="assets/images/xnat_logo.svg" /></p>
<div class="intro-text">
<p>In order to continue using XNAT Desktop Client, the application needs access to <code>/usr/local/lib</code> directory on your system.
To allow access please click "Confirm Access" button.</p>
<p class="text-center">
<br>
<button id="allow_local_lib_access" class="btn btn-blue">Confirm Access</button>
OR
<button id="quit_app" class="btn btn-gray">Quit</button>
</p>
<p class="text-center"><br><br><br><br>
<a href="https://wiki.xnat.org/xnat-tools/dxm" target="_blank">XNAT Desktop Client Documentation</a></p>
</div>
</div>
</div>
</div>
</section>
</main>
<!-- Bootstrap core JavaScript
================================================== -->
<script>
window.$ = window.jQuery = require('jquery');
</script>
<script src="node_modules/bootstrap/dist/js/bootstrap.min.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jqueryui/1.12.1/jquery-ui.min.js"></script>
<script>
require('./renderer-process/index_alt')
var app = require('electron').remote.app
$('#version-number').text('v' + app.getVersion())
</script>
</body>
</html>