moved GUI from old project

This commit is contained in:
2019-12-12 13:25:56 -05:00
parent 66b1991c8d
commit 3f09c4d935
28 changed files with 10874 additions and 0 deletions

27
nodejs/views/login.ejs_org Executable file
View File

@ -0,0 +1,27 @@
<% include top %>
<div class="row">
<div class="col-md-4">
<div class="panel panel-default">
<div class="panel-heading">
<div class="panel-title">Log in</div>
</div>
<div class="panel-body">
<div class="alert alert-warning actionMessage" style="display:none">
</div>
<form method="post" action="login" onsubmit="$(this).validate()">
<input type="hidden" name="redirect" value="<%= redirect %>">
<div class="form-group">
<label class="control-label">Username</label>
<input type="text" name="username" class="form-control" placeholder="User" validate="user:3" />
</div>
<div class="form-group">
<label class="control-label">Password</label>
<input type="password" name="password" class="form-control" placeholder="Password" validate="password:5" />
</div>
<button type="submit" class="btn btn-default" >Log in</button>
</form>
</div>
</div>
</div>
</div>
<% include bottom %>