mirror of
https://github.com/shouptech/tempgopher.git
synced 2026-02-03 16:49:42 +00:00
40 lines
1.6 KiB
HTML
40 lines
1.6 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>Temp Gopher</title>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<link href="//fonts.googleapis.com/css?family=Raleway:400,300,600" rel="stylesheet" type="text/css">
|
|
<link rel="stylesheet" href="css/normalize.css">
|
|
<link rel="stylesheet" href="css/skeleton.css">
|
|
<link rel="icon" type="image/png" href="img/favicon.png">
|
|
<script src="js/jquery.min.js"></script>
|
|
<script src="/jsconfig.js"></script>
|
|
<script src="js/version.js"></script>
|
|
</head>
|
|
<body>
|
|
<div class="container">
|
|
<div class="row" style="margin-top: 5%">
|
|
<div class="four columns offset-by-four"><h3 style="text-align: center">Login</h3></div>
|
|
</div>
|
|
</div>
|
|
<div class="container">
|
|
<div class="row">
|
|
<div class="two columns offset-by-two" style="text-align: right">Username:</div>
|
|
<div class="four columns"><input type="text" style="width: 100%" id="loginName" /></div>
|
|
</div>
|
|
<div class="row">
|
|
<div class="two columns offset-by-two" style="text-align: right">Password:</div>
|
|
<div class="four columns"><input type="password" style="width: 100%" id="loginPassword" /></div>
|
|
</div>
|
|
<div class="row">
|
|
<div class="four columns offset-by-four"><button type="submit" style="width: 100%" class="button button-primary">Login</button></div>
|
|
</div>
|
|
</div>
|
|
<div class="container">
|
|
<div class="row" style="margin-top: 10rem">
|
|
<h6 id="version"></h6>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|