63 lines
1.8 KiB
HTML
63 lines
1.8 KiB
HTML
{{define "register"}}
|
|
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Registration</title>
|
|
|
|
{{template "head"}}
|
|
|
|
<script>
|
|
function checkPasswordMatchUi() {
|
|
if(checkPasswordMatch())
|
|
$("#divCheckPasswordMatch").html("Passwords match.");
|
|
else
|
|
$("#divCheckPasswordMatch").html("Passwords do not match!");
|
|
}
|
|
|
|
function checkPasswordMatch() {
|
|
var password = $("#password").val();
|
|
var confirmPassword = $("#password_confirm").val();
|
|
|
|
return password == confirmPassword;
|
|
}
|
|
|
|
$(document).ready(function () {
|
|
$("#password, #password_confirm").keyup(checkPasswordMatch);
|
|
$('#loginForm').ajaxForm({
|
|
success: function() {
|
|
window.location.href = "/api/v1/restricted";
|
|
},
|
|
error: function() {
|
|
$('#invalidCredentials').show();
|
|
}
|
|
});
|
|
});
|
|
</script>
|
|
</head>
|
|
<body>
|
|
<div class="container" id="head">
|
|
Budgeteer
|
|
</div>
|
|
<div class="container col-lg-12" id="content">
|
|
<form id="loginForm" action="/api/v1/login" method="POST" class="center-block">
|
|
<label for="email">E-Mail</label>
|
|
<input type="text" name="email" /><br />
|
|
|
|
<label for="name">Name</label>
|
|
<input type="text" name="name" /><br />
|
|
|
|
<label for="password">Password</label>
|
|
<input type="password" name="password" id="password" /><br />
|
|
|
|
<label for="password">Verify Password</label>
|
|
<input type="password" id="password_confirm" /><br />
|
|
|
|
<div id="divCheckPasswordMatch">
|
|
</div>
|
|
|
|
<input type="submit" value="Login" />
|
|
</form>
|
|
</div>
|
|
</body>
|
|
</html>
|
|
{{end}} |