28 lines
885 B
HTML
28 lines
885 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta content="text/html; charset=utf-8" http-equiv="content-type"/>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
|
|
<script data-main="main" src="/bower_components/requirejs/require.js"></script>
|
|
<style>
|
|
html, body{
|
|
padding: 0px;
|
|
margin: 0px;
|
|
height: 100%;
|
|
width: 100%;
|
|
box-sizing: border-box;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
|
|
<div data-localization="login_warning"></div>
|
|
|
|
<input type="text" name="username" id="username" data-localization-placeholder="login_username"><br />
|
|
<input type="password" name="password" id="password" data-localization-placeholder="login_password"><br />
|
|
|
|
<button id="login">login</button>
|
|
<input type="checkbox" name="remember" id="remember"><label for="remember" data-localization="login_remember"></label>
|
|
|
|
|