mirror of
https://gitlab.com/Alamantus/Readlebee.git
synced 2025-07-07 00:24:17 +02:00
21 lines
No EOL
448 B
JavaScript
21 lines
No EOL
448 B
JavaScript
import html from 'choo/html';
|
|
|
|
export const loginView = (state, emit) => {
|
|
return html`<section>
|
|
|
|
<article class="card">
|
|
<div class="container wide">
|
|
<label>
|
|
<span>Email</span>
|
|
<input type="email" name="email">
|
|
</label>
|
|
<label>
|
|
<span>Password</span>
|
|
<input type="password" name="password">
|
|
</label>
|
|
<input type="submit" value="Log In!">
|
|
</div>
|
|
</article>
|
|
|
|
</section>`;
|
|
} |