Files
frontend/app/templates/login.hbs
2025-01-06 21:34:23 +01:00

11 lines
485 B
Handlebars

<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>