mirror of
https://github.com/FJurmanovic/wallet-web.git
synced 2026-02-06 06:08:10 +00:00
14 lines
332 B
TypeScript
14 lines
332 B
TypeScript
import { html, TemplateResult } from 'core/utils';
|
|
|
|
export default (): TemplateResult => html`
|
|
<app-form
|
|
data-custom="login-page#onSubmit"
|
|
data-target="login-page.appForm"
|
|
data-render-input="login-page#renderForms"
|
|
>
|
|
</app-form>
|
|
<div>
|
|
<app-link data-to="/register" data-title="Create new account"></app-link>
|
|
</div>
|
|
`;
|