appointment.html 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8" />
  5. <link rel="stylesheet" href="style.css" />
  6. <link rel="shortcut icon" href="img/icon.svg" type="image/svg">
  7. <title>Оформление записи на приём</title>
  8. <script src="main.js"></script>
  9. <style>
  10. @import url('https://fonts.googleapis.com/css2?family=Abhaya+Libre:wght@400;500;600;700;800&display=swap');
  11. input[type="checkbox"] {
  12. display: none;
  13. }
  14. html {
  15. height: 100%;
  16. }
  17. body {
  18. background:
  19. url(img/pinkCircles.png) left bottom no-repeat,
  20. url(img/yellowCorner.png) right top no-repeat;
  21. margin-left: -10px;
  22. position:absolute;
  23. margin-right: 200px;
  24. position:absolute;
  25. }
  26. </style>
  27. </head>
  28. <body class="registration_form">
  29. <a href="services-unreg.html"><input type="button" value="Отменить" class="button-back"></a>
  30. <p class="heads-form">Запись на приём</p>
  31. <form class="form-position" action="main_registered.html">
  32. <div class="element">
  33. <input type="email" placeholder="User@mail.ru" class="input" tabIndex="1" onkeydown="return tab(this, event)">
  34. </div>
  35. <div class="element">
  36. <input type="password" placeholder="***********" class="input" tabIndex="2">
  37. </div>
  38. <div class="element">
  39. <input type="email" placeholder="User@mail.ru" class="input" tabIndex="1" onkeydown="return tab(this, event)">
  40. </div>
  41. <div class="element">
  42. <input type="email" placeholder="User@mail.ru" class="input" tabIndex="1" onkeydown="return tab(this, event)">
  43. </div>
  44. <label class="container">Запомните меня на этом компьютере
  45. <input type="checkbox">
  46. <span class="checkmark"></span>
  47. </label>
  48. <div class="button">
  49. <input type="submit" value="Авторизоваться" class="button-text" id="avtoriz">
  50. </div>
  51. </form>
  52. </body>