setup base jwt authentication
This commit is contained in:
10
app/templates/login.hbs
Normal file
10
app/templates/login.hbs
Normal file
@@ -0,0 +1,10 @@
|
||||
<form {{on "submit" this.authenticate}}>
|
||||
<label for="identification">Login</label>
|
||||
<input id='identification' placeholder="Enter Login" value={{this.identification}} {{on "change" this.updateIdentification}}>
|
||||
<label for="password">Password</label>
|
||||
<input id='password' placeholder="Enter Password" value={{this.password}} {{on "change" this.updatePassword}}>
|
||||
<button type="submit">Login</button>
|
||||
{{#if this.errorMessage}}
|
||||
<p>{{this.errorMessage}}</p>
|
||||
{{/if}}
|
||||
</form>
|
||||
Reference in New Issue
Block a user