aboutsummaryrefslogtreecommitdiff
path: root/src/views
diff options
context:
space:
mode:
Diffstat (limited to 'src/views')
-rw-r--r--src/views/login-page.ecr39
1 files changed, 39 insertions, 0 deletions
diff --git a/src/views/login-page.ecr b/src/views/login-page.ecr
new file mode 100644
index 0000000..644f0ab
--- /dev/null
+++ b/src/views/login-page.ecr
@@ -0,0 +1,39 @@
+<!DOCTYPE html>
+<html lang='en-US'>
+ <head>
+ <meta charset="utf-8"/>
+ <title>Guff Login</title>
+ </head>
+
+ <body>
+ <form method='post'>
+ <label for='user'>
+ User
+ </label>
+
+ <input
+ type='text'
+ id='user'
+ name='user'
+ title='Enter username'
+ />
+
+ <label for='pass'>
+ Password
+ </label>
+
+ <input
+ type='password'
+ id='pass'
+ name='pass'
+ title='Enter password'
+ />
+
+ <input
+ type='submit'
+ value='Login'
+ title='Log in to admin panel.'
+ />
+ </form>
+ </body>
+</html>