28 lines
		
	
	
		
			986 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			28 lines
		
	
	
		
			986 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
| {% ELDEF main JSON pres JSON userinfo %}
 | |
| <!DOCTYPE html>
 | |
| <html lang="ru">
 | |
| <head>
 | |
|     <meta charset="UTF-8">
 | |
|     <meta name="viewport" content="width=device-width, initial-scale=1.0">
 | |
|     <title>Страница Регистрации</title>
 | |
|     <link rel="stylesheet" href="/assets/css/registration.css">
 | |
| 
 | |
| </head>
 | |
| 
 | |
| <body>
 | |
| <div class="form-container">
 | |
|     <h1 class="hide-cursor no-select">Вход</h1>
 | |
|     <form action="assets/html/list-rooms.html" method="post">
 | |
|         <input type="text" name="username" placeholder="Имя пользователя" id="username"><br>
 | |
|         <input type="text" name="login" placeholder="Логин" id="login"><br>
 | |
|         <input type="password" name="password" placeholder="Пароль" id="password"><br>
 | |
|         <button type="submit" class="hide-cursor no-select">Зарегистрироваться</button>
 | |
|         <div id="error"></div>
 | |
|     </form>
 | |
| </div>
 | |
| 
 | |
| <script src="assets/js/registration.js"></script>
 | |
| </body>
 | |
| </html>
 | |
| {% ENDELDEF %}
 |