123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475 |
- <!DOCTYPE html>
- <html lang='en'>
- <head>
- <meta charset='UTF-8' />
- <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
- <!--Bootstrap css-->
- <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@4.5.3/dist/css/bootstrap.min.css" integrity="sha384-TX8t27EcRE3e/ihU7zmQxVncDAy5uIKz4rEkgIXeMed4M0jlfIDPvg6uqKI2xXr2" crossorigin="anonymous">
- <link rel='stylesheet' href='style.css'>
- <title> Pizza Delivery Registration</title>
- </head>
- <body>
- <header>
- <div class="container-fluid">
- <div class="row ">
- <nav class="navbar navbar-expand-lg navbar-light">
- <a class="navbar-brand" href="index.html"><img src="img/pizza-logo.png" alt="logo" style="width: 100px;"></a>
- <a href="cart.html" type="button" class="btn-cart d-flex py-0 px-5 align-items-center">
- <svg class="icon icon-basket" width="3em" height="3em" viewBox="0 0 16 16" class="bi bi-cart4" fill="currentColor" xmlns="http://www.w3.org/2000/svg">
- <path fill="#fff" d="M0 2.5A.5.5 0 0 1 .5 2H2a.5.5 0 0 1 .485.379L2.89 4H14.5a.5.5 0 0 1 .485.621l-1.5 6A.5.5 0 0 1 13 11H4a.5.5 0 0 1-.485-.379L1.61 3H.5a.5.5 0 0 1-.5-.5zM3.14 5l.5 2H5V5H3.14zM6 5v2h2V5H6zm3 0v2h2V5H9zm3 0v2h1.36l.5-2H12zm1.11 3H12v2h.61l.5-2zM11 8H9v2h2V8zM8 8H6v2h2V8zM5 8H3.89l.5 2H5V8zm0 5a1 1 0 1 0 0 2 1 1 0 0 0 0-2zm-2 1a2 2 0 1 1 4 0 2 2 0 0 1-4 0zm9-1a1 1 0 1 0 0 2 1 1 0 0 0 0-2zm-2 1a2 2 0 1 1 4 0 2 2 0 0 1-4 0z"/>
- </svg>
- <span class="btn-cart-info"></span>
- </a>
- </nav>
- </div>
- </div>
- </header>
- <main>
- <div class="container-fluid">
- <h2 class="form-title">Регистрация</h2>
- <form class="user-info">
- <div class="form-row">
- <div class="col-md-4 mb-3">
- <label for="name">Имя<span class="required">*</span></label>
- <input type="text" class="form-control" id="name" placeholder="Имя" required>
- </div>
- </div>
- <div class="form-row">
- <div class="col-md-4 mb-3">
- <label for="surname">Фамилия<span class="required">*</span></label>
- <input type="text" class="form-control" id="surname" placeholder="Фамилия" required>
- </div>
- </div>
- <div class="form-row">
- <div class="col-md-4 mb-3">
- <label for="phone">Телефон<span class="required">*</span></label>
- <input type="tel" class="form-control" id="phone" placeholder="Телефон" required>
- </div>
- </div>
- <div class="form-row">
- <div class="col-md-4 mb-3">
- <label for="address">Адрес</label>
- <input type="text" class="form-control" id="address" placeholder="Адрес">
- </div>
- </div>
- <button type="submit" class="btn btn-outline-warning my-3 btn-to-cart">Перейти к заказу</button>
- </form>
- </div>
-
- </main>
- <footer>
- <div class="container-fluid">
- <div class="row">
- <div class="col py-3"><a href="tel:+380501234567"><p class="text-center my-auto">+38 050 123 45 67</p></a></div>
- </div>
- </div>
- </footer>
- <script src='https://cdnjs.cloudflare.com/ajax/libs/axios/0.19.2/axios.js'></script>
- <!-- jQuery, Popper.js, and Bootstrap JS -->
- <script src="https://code.jquery.com/jquery-3.5.1.slim.min.js" integrity="sha384-DfXdz2htPH0lsSSs5nCTpuj/zy4C+OGpamoFVy38MVBnE+IbbVYUew+OrCXaRkfj" crossorigin="anonymous"></script>
- <script src="https://cdn.jsdelivr.net/npm/popper.js@1.16.1/dist/umd/popper.min.js" integrity="sha384-9/reFTGAW83EW2RDu2S0VKaIzap3H66lZH81PoYlFhbGU+6BZp6G7niu735Sk7lN" crossorigin="anonymous"></script>
- <script src="https://cdn.jsdelivr.net/npm/bootstrap@4.5.3/dist/js/bootstrap.min.js" integrity="sha384-w1Q4orYjBQndcko6MimVbzY0tgp4pWB4lZ7lr30WKz0vr/aWKhXdBNmNb5D92v7s" crossorigin="anonymous"></script>
- <!-- Custom script -->
- <script type='module' src='scripts/index.js'></script>
- </body>
- </html>
|