36 lines
1.1 KiB
HTML
36 lines
1.1 KiB
HTML
<html>
|
|
|
|
<head>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<script src="http://code.jquery.com/jquery-3.1.0.min.js" type="text/javascript"></script>
|
|
|
|
<!-- font awesome from BootstrapCDN -->
|
|
<link href="//maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" rel="stylesheet">
|
|
<link href="//maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet">
|
|
|
|
<script src="/public/js.cookie.js"></script>
|
|
<script src="/public/user.js"> </script>
|
|
<link href="/public/app.css" rel="stylesheet">
|
|
</head>
|
|
|
|
<body class="home">
|
|
<div class="container">
|
|
<div class="login-page clearfix">
|
|
<div class="logged-in-box auth0-box logged-in">
|
|
<img class="avatar" src="{{.Picture}}" />
|
|
<h2>Welcome {{.Nickname}}</h2>
|
|
<a id="qsLogoutBtn" class="btn btn-primary btn-lg btn-logout btn-block" href="/logout">Logout</a>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<script>
|
|
// $(document).ready(function () {
|
|
// $('.btn-logout').click(function (e) {
|
|
// Cookies.remove('auth-session');
|
|
// });
|
|
// });
|
|
|
|
</script>
|
|
</body>
|
|
|
|
</html> |