From 8065100a4b22901db6f488a06714207a4063a8d5 Mon Sep 17 00:00:00 2001 From: Josh Moore Date: Sat, 14 Oct 2023 14:51:18 -0600 Subject: [PATCH] feat: added basic login UI (non-functional) --- views/login.pug | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/views/login.pug b/views/login.pug index 29292de..54a2bf1 100644 --- a/views/login.pug +++ b/views/login.pug @@ -2,5 +2,10 @@ extends _base_ block section span login block content - .flex.flex-col.flex-center.h-full - h1.text-3xl Login \ No newline at end of file + .flex.flex-col.flex-center.h-full: .setup-panel + h3 Username + sl-input#login-username(type='text' placeholder='username' clearable): sl-icon(slot='prefix' name='fas-user' library='fa') + h3 Password + sl-input#login-password(type='password' placeholder='password' clearable): sl-icon(slot='prefix' name='fas-lock' library='fa') + sl-button.mt-4#login-submit(type='primary' submit) Login + //- script(src='/setup/login.js') \ No newline at end of file