24 lines
		
	
	
		
			436 B
		
	
	
	
		
			HTML
		
	
	
	
			
		
		
	
	
			24 lines
		
	
	
		
			436 B
		
	
	
	
		
			HTML
		
	
	
	
<!DOCTYPE html>
 | 
						|
<html>
 | 
						|
 | 
						|
<head>
 | 
						|
	<title>flabk - login</title>
 | 
						|
	<link rel="stylesheet" href="/static/style/main.css">
 | 
						|
</head>
 | 
						|
 | 
						|
<body>
 | 
						|
	<h1>login</h1>
 | 
						|
	<div id="central">
 | 
						|
		<p>login form</p>
 | 
						|
		{{> (lookup this "tag_name")}}
 | 
						|
		<form id="login" method="post" action="/login">
 | 
						|
			<input type="text" name="username">
 | 
						|
			<input type="password" name="password">
 | 
						|
			<input type="submit" value="Submit" hidden>
 | 
						|
		</form>
 | 
						|
	</div>
 | 
						|
 | 
						|
</body>
 | 
						|
 | 
						|
</html>
 |