mirror of
https://github.com/Hopiu/webapi-eca.git
synced 2026-05-18 04:01:12 +00:00
switched crypto to crypto-js from google. login.html form loads crypto-js directly from google codebase in order to hash passwords before sending them to the server
18 lines
No EOL
521 B
HTML
18 lines
No EOL
521 B
HTML
<!DOCTYPE HTML>
|
|
<html>
|
|
<head>
|
|
<title>Unauthorized {{user.username}}</title>
|
|
<link rel="stylesheet" type="text/css" href="style.css">
|
|
<script src='//ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js' type='text/javascript'></script>
|
|
</head>
|
|
<body>
|
|
{{{div_menubar}}}
|
|
<div id="mainbody">
|
|
<div id="pagetitle">{{user.username}} unauthorized!</div>
|
|
<p>
|
|
Sorry this roles is missing for you.<br />
|
|
You only have these privileges: {{user.roles}}
|
|
</p>
|
|
</div>
|
|
</body>
|
|
</html> |