aboutsummaryrefslogtreecommitdiff
path: root/src/views/login-page.ecr
blob: 644f0abd240608ff394bfe54deb0b140d55365ba (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
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>