mirror of
				https://github.com/encode/django-rest-framework.git
				synced 2025-10-30 23:47:53 +03:00 
			
		
		
		
	
		
			
				
	
	
		
			45 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			45 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
| {% load static %}
 | |
| <html>
 | |
| 
 | |
|     <head>
 | |
|         <link rel="stylesheet" type="text/css" href='{% get_static_prefix %}djangorestframework/css/style.css'/>
 | |
|     </head>
 | |
| 
 | |
|     <body class="login">
 | |
| 
 | |
|         <div id="container">
 | |
| 
 | |
|             <div id="header">
 | |
|                 <div id="branding">
 | |
|                     <h1 id="site-name">Django REST framework</h1>
 | |
|                 </div>
 | |
|             </div>
 | |
| 
 | |
|             <div id="content" class="colM">
 | |
|                 <div id="content-main">
 | |
|                     <form method="post" action="{% url djangorestframework.utils.staticviews.api_login %}" id="login-form">
 | |
|                         {% csrf_token %}
 | |
|                         <div class="form-row">
 | |
|                             <label for="id_username">Username:</label> {{ form.username }}
 | |
|                         </div>
 | |
|                         <div class="form-row">
 | |
|                             <label for="id_password">Password:</label> {{ form.password }}
 | |
|                             <input type="hidden" name="next" value="{{ next }}" />
 | |
|                         </div>
 | |
|                         <div class="form-row">
 | |
|                             <label> </label><input type="submit" value="Log in">
 | |
|                         </div>
 | |
|                     </form>
 | |
|                     <script type="text/javascript">
 | |
|                         document.getElementById('id_username').focus()
 | |
|                     </script>
 | |
|                 </div>
 | |
|                 <br class="clear">
 | |
|             </div>
 | |
| 
 | |
|             <div id="footer"></div>
 | |
| 
 | |
|         </div>
 | |
|     </body>
 | |
| </html>
 |