21 lines
448 B
JavaScript
21 lines
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>`;
|
|
} |