47 lines
1.6 KiB
HTML
47 lines
1.6 KiB
HTML
<!doctype html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>xTeVe</title>
|
|
<link rel="stylesheet" href="css/screen.css" type="text/css">
|
|
<link rel="stylesheet" href="css/base.css" type="text/css">
|
|
<script language="javascript" type="text/javascript" src="js/network_ts.js"></script>
|
|
<script language="javascript" type="text/javascript" src="js/authentication_ts.js"></script>
|
|
</head>
|
|
|
|
<body class="auth-screen">
|
|
|
|
<div id="header" class="imgCenter"></div>
|
|
|
|
<main id="box" role="main" aria-labelledby="head-text">
|
|
|
|
<div id="headline">
|
|
<h1 id="head-text" class="center">{{.login.headline}}</h1>
|
|
</div>
|
|
|
|
<p id="err" class="errorMsg center" role="alert" aria-live="assertive" aria-atomic="true">{{.authenticationErr}}</p>
|
|
|
|
<div id="content">
|
|
|
|
<form id="authentication" action="" method="post" aria-describedby="err" novalidate>
|
|
|
|
<label for="username">{{.login.username.title}}:</label>
|
|
<input id="username" type="text" name="username" placeholder="Username" value="" autocomplete="username">
|
|
<label for="password">{{.login.password.title}}:</label>
|
|
<input id="password" type="password" name="password" placeholder="Password" value="" autocomplete="current-password">
|
|
|
|
</form>
|
|
|
|
</div>
|
|
|
|
<div id="box-footer">
|
|
<input id="submit" class="" type="button" value="{{.button.login}}" aria-label="{{.button.login}}" onclick="javascript: login();">
|
|
</div>
|
|
|
|
</main>
|
|
|
|
</body>
|
|
|
|
</html>
|