Last active
July 2, 2020 22:15
-
-
Save usharik/71fed239407f2871e1381dc2b4bf32d8 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!doctype html> | |
<html lang="ru"> | |
<head> | |
<!-- Required meta tags --> | |
<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://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous"> | |
<title>Список покупок</title> | |
</head> | |
<body> | |
<div class="container"> | |
<form method="post" action="#"> | |
<div class="input-group mb-3 mt-3"> | |
<input type="text" class="form-control" placeholder="Название новой покупки" aria-label="Название новой покупки" aria-describedby="basic-addon2"> | |
<div class="input-group-append"> | |
<button class="btn btn-primary" type="submit">Добавить</button> | |
</div> | |
</div> | |
</form> | |
<table class="table table-striped"> | |
<thead> | |
<tr> | |
<th scope="col">#</th> | |
<th scope="col">Название</th> | |
</tr> | |
</thead> | |
<tbody> | |
<tr> | |
<th scope="row">1</th> | |
<td>Мясо</td> | |
<td> | |
<form> | |
<button type="submit" class="btn btn-outline-danger">Удалить</button> | |
</form> | |
</td> | |
</tr> | |
<tr> | |
<th scope="row">2</th> | |
<td>Молоко</td> | |
<td> | |
<form> | |
<button type="submit" class="btn btn-outline-danger">Удалить</button> | |
</form> | |
</td> | |
</tr> | |
<tr> | |
<th scope="row">3</th> | |
<td>Квас</td> | |
<td> | |
<form> | |
<button type="submit" class="btn btn-outline-danger">Удалить</button> | |
</form> | |
</td> | |
</tr> | |
</tbody> | |
</table> | |
</div> | |
<!-- Optional JavaScript --> | |
<!-- jQuery first, then Popper.js, then Bootstrap JS --> | |
<script src="https://code.jquery.com/jquery-3.2.1.slim.min.js" integrity="sha384-KJ3o2DKtIkvYIK3UENzmM7KCkRr/rE9/Qpg6aAZGJwFDMVNA/GpGFF93hXpG5KkN" crossorigin="anonymous"></script> | |
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js" integrity="sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q" crossorigin="anonymous"></script> | |
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/js/bootstrap.min.js" integrity="sha384-JZR6Spejh4U02d8jOt6vLEHfe/JQGiRRSQQxSfFWpi1MquVdAyjUar5+76PVCmYl" crossorigin="anonymous"></script> | |
</body> | |
</html> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!doctype html> | |
<html lang="en"> | |
<head> | |
<!-- Required meta tags --> | |
<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://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" | |
integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous"> | |
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.3.1/css/all.css"/> | |
<title>Список покупок</title> | |
</head> | |
<body> | |
<nav class="navbar navbar-expand-lg navbar-light bg-light"> | |
<a class="navbar-brand" href="#">Список покупок</a> | |
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarSupportedContent" | |
aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation"> | |
<span class="navbar-toggler-icon"></span> | |
</button> | |
<div class="collapse navbar-collapse" id="navbarSupportedContent"> | |
<ul class="navbar-nav mr-auto"> | |
</ul> | |
<div class="form-inline my-2 my-lg-0"> | |
<a class="btn btn-outline-success my-2 mr-2 my-sm-0" href="login.html">Логин</a> | |
</div> | |
</div> | |
</nav> | |
<div class="container"> | |
<div class="row py-2"> | |
<div class="col-12"> | |
<form action="#" method="post"> | |
<div class="form-group"> | |
<label for="username">Имя пользователя</label> | |
<input type="text" class="form-control" id="username" name="username" placeholder="Введите имя пользователя"> | |
<small class="form-text text-danger">Некорректное имя пользователя или пароль</small> | |
</div> | |
<div class="form-group"> | |
<label for="password">Пароль</label> | |
<input type="password" class="form-control" id="password" name="password" placeholder="Введите пароль"> | |
</div> | |
<button type="submit" class="btn btn-primary">Логин</button> | |
<a class="px-3" href="register.html">Зарегистрироваться</a> | |
</form> | |
</div> | |
</div> | |
</div> | |
<!-- Optional JavaScript --> | |
<!-- jQuery first, then Popper.js, then Bootstrap JS --> | |
<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js" | |
integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo" | |
crossorigin="anonymous"></script> | |
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.7/umd/popper.min.js" | |
integrity="sha384-UO2eT0CpHqdSJQ6hJty5KVphtPhzWj9WO1clHTMGa3JDZwrnQq4sF86dIHNDz0W1" | |
crossorigin="anonymous"></script> | |
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js" | |
integrity="sha384-JjSmVgyd0p3pXB1rRibZUAYoIIy6OrQ6VrjIEaFf/nJGzIxFDsf4x0xIM+B07jRM" | |
crossorigin="anonymous"></script> | |
</body> | |
</html> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!doctype html> | |
<html lang="en"> | |
<head> | |
<!-- Required meta tags --> | |
<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://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" | |
integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous"> | |
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.3.1/css/all.css"/> | |
<title>Список покупок</title> | |
</head> | |
<body> | |
<nav class="navbar navbar-expand-lg navbar-light bg-light"> | |
<a class="navbar-brand" href="#">Список покупок</a> | |
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarSupportedContent" | |
aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation"> | |
<span class="navbar-toggler-icon"></span> | |
</button> | |
<div class="collapse navbar-collapse" id="navbarSupportedContent"> | |
<ul class="navbar-nav mr-auto"> | |
</ul> | |
<form class="form-inline my-2 my-lg-0" action="#" method="post"> | |
<button class="btn btn-outline-success my-2 my-sm-0">Выйти</button> | |
</form> | |
<div class="form-inline my-2 my-lg-0"> | |
<a class="btn btn-outline-success my-2 mr-2 my-sm-0" href="login.html">Логин</a> | |
</div> | |
</div> | |
</nav> | |
<div class="container"> | |
<div class="row py-2"> | |
<div class="col-12"> | |
<form action="#" method="post"> | |
<div class="form-group"> | |
<label for="username">User name</label> | |
<input type="text" id="username" class="form-control" placeholder="Enter user name"> | |
<small class="form-text text-danger" >Validation error</small> | |
</div> | |
<div class="form-group"> | |
<label for="password">Password</label> | |
<input type="password" id="password" class="form-control" placeholder="Password"> | |
<small class="form-text text-danger">Validation error</small> | |
</div> | |
<div class="form-group"> | |
<label for="repeatPassword">Repeat password</label> | |
<input type="password" id="repeatPassword" class="form-control" placeholder="Repeat password"> | |
<small class="form-text text-danger">Validation error</small> | |
</div> | |
<button type="submit" class="btn btn-primary">Register</button> | |
</form> | |
</div> | |
</div> | |
</div> | |
<!-- Optional JavaScript --> | |
<!-- jQuery first, then Popper.js, then Bootstrap JS --> | |
<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js" | |
integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo" | |
crossorigin="anonymous"></script> | |
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.7/umd/popper.min.js" | |
integrity="sha384-UO2eT0CpHqdSJQ6hJty5KVphtPhzWj9WO1clHTMGa3JDZwrnQq4sF86dIHNDz0W1" | |
crossorigin="anonymous"></script> | |
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js" | |
integrity="sha384-JjSmVgyd0p3pXB1rRibZUAYoIIy6OrQ6VrjIEaFf/nJGzIxFDsf4x0xIM+B07jRM" | |
crossorigin="anonymous"></script> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment