15 lines
		
	
	
		
			409 B
		
	
	
	
		
			HTML
		
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			409 B
		
	
	
	
		
			HTML
		
	
	
{% extends 'base.html' %}
 | 
						|
 | 
						|
{% block title %}Log In{% endblock %}
 | 
						|
 | 
						|
{% block content %}
 | 
						|
  <h2>Log In</h2>
 | 
						|
  <form method="post">
 | 
						|
    <label for="username">Username</label>
 | 
						|
    <input type="text" name="username" id="username" required>
 | 
						|
    <label for="password">Password</label>
 | 
						|
    <input type="password" name="password" id="password" required>
 | 
						|
    <input type="submit" value="Log In">
 | 
						|
  </form>
 | 
						|
{% endblock %}
 |