12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- <!DOCTYPE html>
- <html>
- <head>
- <meta charset="utf-8" />
- <link rel="stylesheet" href="style.css" />
- <link rel="shortcut icon" href="img/icon.svg" type="image/svg">
- <title>Редактирование профиля</title>
- <style>
- @import url('https://fonts.googleapis.com/css2?family=Abhaya+Libre:wght@400;500;600;700;800&display=swap');
- input[type="checkbox"] {
- display: none;
- }
- html {
- height: 160%;
- }
- body {
- background:
- url(img/pinkCircles.png) left bottom no-repeat,
- url(img/yellowCorner.png) right top no-repeat;
- margin-left: -0.545vw;
- margin-right: 10.905vw;
- position: absolute;
- }
- </style>
- </head>
- <body class="registration_form">
- <a href="profile.html"><input type="button" value="Назад" class="button-back"></a>
- <p class="heads-form">Редактирование профиля</p>
- <form class="form-position" action="main_registered.html">
- <div class="element">
- <label class="lable">Имя</label><br>
- <input type="text" placeholder="Иван" class="input" tabIndex="1" onkeydown="return tab(this, event)">
- </div>
- <div class="element">
- <label class="lable">Фамилия</label><br>
- <input type="text" placeholder="Иванов" class="input" tabIndex="2">
- </div>
- <div class="element">
- <label class="lable">Почта</label><br>
- <input type="email" placeholder="User@mail.ru" class="input" tabIndex="3">
- </div>
- <div class="element">
- <label class="lable">Телефон</label><br>
- <input type="text" placeholder="+7 (***)***-**-**" class="input" tabIndex="4">
- </div>
- <div class="element">
- <label class="lable">Пароль</label><br>
- <input type="password" placeholder="***********" class="input" tabIndex="5">
- </div>
- <div class="element">
- <label class="lable">Повторите пароль</label><br>
- <input type="password" placeholder="***********" class="input" tabIndex="6">
- </div>
- <div class="button">
- <input type="submit" value="Сохранить изменения" class="button-text">
- </div>
- </form>
- </body>
|