81 lines
2.0 KiB
Cheetah
81 lines
2.0 KiB
Cheetah
|
<!DOCTYPE html>
|
||
|
<html>
|
||
|
<head>
|
||
|
<meta charset="UTF-8">
|
||
|
<title>Foodoles written in Go</title>
|
||
|
<link rel="stylesheet" type="text/css" href="https://cdnjs.cloudflare.com/ajax/libs/semantic-ui/2.2.13/semantic.min.css">
|
||
|
<script src="https://code.jquery.com/jquery-3.1.1.min.js" integrity="sha256-hVVnYaiADRTO2PzUGmuLJr8BLUSjGIZsDYGmIJLv2b8=" crossorigin="anonymous"></script>
|
||
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/semantic-ui/2.2.13/semantic.min.js"></script>
|
||
|
<style type="text/css"> h2 { margin: 2em 0em; } .ui.container { padding-top: 5em; padding-bottom: 5em; } </style>
|
||
|
|
||
|
<style type="text/css">
|
||
|
body > .grid {
|
||
|
height: 100%;
|
||
|
}
|
||
|
.image {
|
||
|
margin-top: -100px;
|
||
|
}
|
||
|
.column {
|
||
|
max-width: 450px;
|
||
|
}
|
||
|
</style>
|
||
|
<script>
|
||
|
$(document)
|
||
|
.ready(function() {
|
||
|
$('.ui.form')
|
||
|
.form({
|
||
|
fields: {
|
||
|
password: {
|
||
|
identifier : 'password',
|
||
|
rules: [
|
||
|
{
|
||
|
type : 'empty',
|
||
|
prompt : 'Please enter your password'
|
||
|
},
|
||
|
]
|
||
|
}
|
||
|
}
|
||
|
})
|
||
|
;
|
||
|
})
|
||
|
;
|
||
|
</script>
|
||
|
</head>
|
||
|
<body>
|
||
|
|
||
|
<div class="ui middle aligned center aligned grid">
|
||
|
<div class="column">
|
||
|
<h2 class="ui blue image header">
|
||
|
<div class="content">
|
||
|
Log-in
|
||
|
</div>
|
||
|
</h2>
|
||
|
<form class="ui large form" action="/" method="POST">
|
||
|
<div class="ui stacked segment">
|
||
|
<div class="field">
|
||
|
<div class="ui left icon input">
|
||
|
<i class="user icon"></i>
|
||
|
<input type="text" name="user" placeholder="User Name">
|
||
|
</div>
|
||
|
</div>
|
||
|
<div class="field">
|
||
|
<div class="ui left icon input">
|
||
|
<i class="lock icon"></i>
|
||
|
<input type="password" name="password" placeholder="Password">
|
||
|
</div>
|
||
|
</div>
|
||
|
<div class="ui fluid large blue submit button">Login</div>
|
||
|
</div>
|
||
|
|
||
|
<div class="ui error message"></div>
|
||
|
|
||
|
</form>
|
||
|
|
||
|
|
||
|
</div>
|
||
|
</div>
|
||
|
|
||
|
</body>
|
||
|
|
||
|
</html>
|