summaryrefslogtreecommitdiff
path: root/web/login/index.pug
blob: aabb47ae62630913cbdd35c119371eaf3bd6d17b (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
extends ../base.pug

append vars
	- title = "PiKVM Login"
	- main_js = "login/main"
	- css_list = css_list.concat(["window", "modal", "login/login"])

block body
	form(action="javascript:void(0)")
		div(id="login-box")
			div(id="login")
				table
					tr
						td Username: 
						td #[input(type="text" id="user-input" autocapitalize="off")]
					tr
						td Password: 
						td #[input(type="password" id="passwd-input" autocapitalize="off")]
					tr
						td 2FA code: 
						td #[input(type="text" id="code-input" placeholder="if enabled")]
					tr
						td(colspan=2)
							hr
					tr
						td
						td #[button(id="login-button" class="key" style="width:100%") Login]

	ul(class="footer")
		li(class="left")
			| This site is actively using JavaScript.#[br]
			| It doesn't contain ads, but is blocked by some ad filters.#[br]
			| Please turn it off to continue and reload the page.