added missing files
parent
fd9cb2eaf7
commit
4edc1cd3ea
@ -0,0 +1,6 @@
|
|||||||
|
{
|
||||||
|
"socket" : {
|
||||||
|
"address" : "localhost",
|
||||||
|
"port" : "4567"
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,24 @@
|
|||||||
|
<h1>Reset Password</h1>
|
||||||
|
<div class="well">
|
||||||
|
<div class="alert alert-success" id="success" style="display:none">
|
||||||
|
<button type="button" class="close" data-dismiss="alert">×</button>
|
||||||
|
<strong>Password Reset Sent</strong>
|
||||||
|
<p>An email has been dispatched to <span id="reset-email"></span> with instructions on setting a new password.</p>
|
||||||
|
</div>
|
||||||
|
<label>Email Address</label><input type="text" placeholder="Enter Email Address" id="email" /><br />
|
||||||
|
<button class="btn btn-primary" id="login" type="submit">Reset Password</button>
|
||||||
|
</div>
|
||||||
|
<script type="text/javascript">
|
||||||
|
(function() {
|
||||||
|
/*socket.on('user.login', function(data) {
|
||||||
|
console.log(data);
|
||||||
|
if (data.status === 0) {
|
||||||
|
jQuery('#error').show(50);
|
||||||
|
jQuery('#error p').html(data.message);
|
||||||
|
} else {
|
||||||
|
alert('success');
|
||||||
|
jQuery('#error').hide(50);
|
||||||
|
}
|
||||||
|
});*/
|
||||||
|
}());
|
||||||
|
</script>
|
Loading…
Reference in New Issue