aboutsummaryrefslogtreecommitdiff
path: root/views
diff options
context:
space:
mode:
authorbobzel <zzzman@gmail.com>2022-07-20 09:12:11 -0400
committerbobzel <zzzman@gmail.com>2022-07-20 09:12:11 -0400
commit724c1c1228aa601fdbbed93dde68a5a9fa9c5ae9 (patch)
tree1f5f4629b4b990c619ee4e76b3997f7706aefd8f /views
parenta0b032c49e792e1bcaa69a584cacacb7e950bef1 (diff)
added a 'guest' login mode. added ability for mainView to be any doc, not just a docking collection.
Diffstat (limited to 'views')
-rw-r--r--views/login.pug4
1 files changed, 2 insertions, 2 deletions
diff --git a/views/login.pug b/views/login.pug
index 98816e9c8..71c6933be 100644
--- a/views/login.pug
+++ b/views/login.pug
@@ -15,10 +15,10 @@ block content
h3.auth_header Log In
.form-group
.col-sm-7
- input.form-control(type='email', name='email', id='email', placeholder='Email', autofocus, required)
+ input.form-control(type='email', name='email', id='email', placeholder='Email (or blank for "guest")', autofocus)
.form-group
.col-sm-7
- input.form-control(type='password', name='password', id='password', placeholder='Password', required)
+ input.form-control(type='password', name='password', id='password', placeholder='Password')
.form-group
.col-sm-offset-3.col-sm-7
button.btn.btn-success(id='submit', type='submit')