-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.ejs
42 lines (33 loc) · 1.17 KB
/
index.ejs
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>
<%= htmlWebpackPlugin.options.title %>
</title>
</head>
<body ng-app="app">
<div ng-controller="mainController as mainCtrl">
<header>
<nav class="navbar navbar-light bg-light navbar-expand-md">
<a class="navbar-brand">
<img ng-src="{{ mainCtrl.apexLogo }}" alt="APEX Signature Validation Tool" />
</a>
<ul class="navbar-nav">
<li ui-sref-active="active" class="nav-item">
<a ui-sref="signatureValidator" class="nav-link">Signature Validator</a>
</li>
<li ui-sref-active="active" class="nav-item">
<a ui-sref="joseValidator" class="nav-link">JOSE Validator</a>
</li>
</ul>
</nav>
</header>
<ui-view></ui-view>
<div class="footer">
<p style="text-align: center;">v{{ mainCtrl.version }} © Government Technology Agency of Singapore. All
Rights Reserved.</p>
</div>
</div>
</body>
</html>