Advertisement
Guest User

Untitled

a guest
Jun 18th, 2022
53
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 2.01 KB | None | 0 0
  1. {% extends 'pattern.html' %}
  2.  
  3. {% block title %}
  4. nizamoff.ru — log in and sign up
  5. {% endblock %}
  6.  
  7. {% block body %}
  8.     <div id="page" class="normal black">
  9.         <div id="menu-buttons" class="center">
  10.             <ul>
  11.                 <li><a href="../index.html"> ГЛАВНАЯ </a></li>
  12.                 <li><a href="../about/index.html"> О СЕБЕ </a></li>
  13.                 <li><a href="index.html"> ПОЗЖЕ </a></li>
  14.                 <li><a href="index.html"> Темная тема (позже) </a></li>
  15.                 <li id="menu-current"><a href="index.html"> ПРОФИЛЬ </a></li>
  16.             </ul>
  17.         </div>
  18.  
  19.         <div id="content">
  20.  
  21.  
  22.  
  23.             <div style="margin-left: 20%; margin-right: 20%">
  24.                 <h1 class="big center"> Чтобы посмотреть профиль вы должны войти в аккаунт или зарегистрировать его </h1>
  25.  
  26. <!--                <div class="lime-bg block block-circle" style="left: 5%; width: 40%">
  27.                     <form>
  28.                         <div class="form">
  29.                             <h3 class="center">Войти</h3>
  30.                             <input type="text" placeholder="Логин">
  31.                             <input type="password" placeholder="Пароль">
  32.                             <input class="white red-bg" type="submit" value="Войти" style="margin-top: 130px">
  33.                         </div>
  34.                     </form>
  35.                 </div> -->
  36.  
  37.                 <div class="lime-bg block block-circle" style="right: 5%; width: 40%; float: right">
  38.                     <form>
  39.                         <div method="post" class="form">
  40.                             <h3 class="center">Регистрация</h3>
  41.                             <input type="text" name="username" placeholder="Логин">
  42.                             <input type="email" name="email" placeholder="Почта">
  43.                             <input type="password" name="pword" placeholder="Пароль">
  44.                             <input type="password" name="pword2" placeholder="Повторите пароль">
  45.                             <input type="submit" value="Зарегистрироваться" class="white red-bg">
  46.                         </div>
  47.                     </form>
  48.                 </div>
  49.             </div>
  50.         </div>
  51.  
  52.  
  53.         <br><br><br>
  54.         <div id="footer" class="white">
  55.             Created by <a href="https://t.me/nizamovoff">Aynur Nizamov</a> from Kazan sity.
  56.         </div>
  57.     </div>
  58. {% endblock %}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement