Skip to content

Commit

Permalink
edit login page
Browse files Browse the repository at this point in the history
  • Loading branch information
0c34 committed Oct 21, 2017
1 parent f977568 commit a528d4a
Showing 1 changed file with 21 additions and 17 deletions.
38 changes: 21 additions & 17 deletions templates/template.login.html
Original file line number Diff line number Diff line change
@@ -1,16 +1,17 @@
{{define "template.login"}}
<html>
<head>
<title>{{.Title}}</title>
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script type="text/javascript" src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>

<head>
<title>{{.Title}}</title>
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script type="text/javascript" src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
<style type="text/css">
body{
body {
padding-top: 30px;
}
</style>
</head>
</head>

<body>
<div class="container">
Expand All @@ -21,22 +22,25 @@
<h3 class="panel-title">GOVWA User Login</h3>
</div>
<div class="panel-body">
<form action="" role="form" method="post" accept-charset="utf-8">
<form action="" role="form" method="post" accept-charset="utf-8">
<fieldset>
<div class="form-group">
<input type="text" name="identity" value="" class="form-control" placeholder="username" />
</div>
<div class="form-group">
<input type="password" name="password" value="" class="form-control" placeholder="Password" />
</div>
<input type="submit" name="submit" value="Log in" class="btn btn-success btn-lg btn-block" />
<div class="form-group">
<input type="text" name="identity" value="" class="form-control" placeholder="username" />
</div>
<div class="form-group">
<input type="password" name="password" value="" class="form-control" placeholder="Password" />
</div>
<input type="submit" name="submit" value="Log in" class="btn btn-success btn-lg btn-block" />
</fieldset>
</form>
</div>
</form>
</div>
</div>
</div>
</div>
</div>
</body>
<script>
</script>

</html>
{{end}}

0 comments on commit a528d4a

Please sign in to comment.