woodpecker/server/template/files/login.html
2017-02-10 09:02:11 +01:00

36 lines
1.5 KiB
HTML

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8"/>
<meta content="width=device-width, initial-scale=1" name="viewport"/>
<meta content="ie=edge" http-equiv="x-ua-compatible"/>
<link href="https://fonts.googleapis.com/css?family=Roboto" rel="stylesheet"/>
<link href="https://fonts.googleapis.com/css?family=Roboto+Mono" rel="stylesheet"/>
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet"/>
<link href="/static/favicon.ico" rel="icon" type="image/x-icon"/>
<link rel="stylesheet" href="/static/app.css" />
<title>login | drone</title>
</head>
<body>
<div class="mdl-grid">
<div class="mdl-layout-spacer"></div>
<div class="mdl-card">
<form action="/authorize" method="post">
<div class="mdl-textfield mdl-js-textfield">
<input class="mdl-textfield__input" type="text" id="username" name="username" />
<label class="mdl-textfield__label" for="username">Username</label>
</div>
<div class="mdl-textfield mdl-js-textfield">
<input class="mdl-textfield__input" type="password" id="userpass" name="password" />
<label class="mdl-textfield__label" for="userpass">Password</label>
</div>
<div class="mdl-dialog__actions">
<input type="submit" class="mdl-button mdl-button--colored mdl-js-button" value="Login" />
</div>
</form>
</div>
<div class="mdl-layout-spacer"></div>
</div>
<script src="https://code.getmdl.io/1.1.3/material.min.js"></script>
</body>
</html>