-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added alerts_progress.html, input-groups.html and tables_pagination.html
- Loading branch information
Showing
3 changed files
with
797 additions
and
0 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,144 @@ | ||
<!-- Bootstrap 4 starter template --> | ||
<!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.1.3/css/bootstrap.min.css" | ||
integrity="sha384-MCw98/SFnGE8fJT3GXwEOngsV7Zt27NXFoaoApmYm81iuXoPkFOJwJ8ERdknLPMO" crossorigin="anonymous"> | ||
|
||
<title>Alerts and Progress</title> | ||
</head> | ||
<body> | ||
<br> | ||
<br> | ||
<div class="container"> | ||
<!-- Alerts --> | ||
<div class="alert alert-primary"> | ||
<strong>Primary</strong> Blog post added | ||
</div> | ||
|
||
<div class="alert alert-secondary"> | ||
<strong>Secondary</strong> Blog post added | ||
</div> | ||
|
||
<div class="alert alert-success"> | ||
<strong>success</strong> Blog post added | ||
</div> | ||
|
||
<div class="alert alert-danger"> | ||
<strong>Danger</strong> Please check the log files | ||
</div> | ||
|
||
<div class="alert alert-info"> | ||
<strong>Info</strong> You have a new message | ||
</div> | ||
|
||
<div class="alert alert-warning"> | ||
<strong>Warning</strong> Please check the log files | ||
</div> | ||
|
||
<div class="alert alert-light"> | ||
<strong>Lighr</strong> Blog post added | ||
</div> | ||
|
||
<div class="alert alert-dark"> | ||
<strong>Dark</strong> Blog post added | ||
</div> | ||
|
||
<!-- Dismissable Alert --> | ||
<div class="alert alert-success alert-dismissable"> | ||
<button class="close" type="button" data-dismiss="alert"> | ||
<span>×</span> | ||
</button> | ||
<strong>Dismissable</strong> Blog post added | ||
</div> | ||
|
||
<!-- Extra Content --> | ||
<div class="alert alert-success"> | ||
<h4 class="alert-heading">Congrats!</h4> | ||
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Alias amet cumque enim impedit itaque necessitatibus | ||
odio quia quis quisquam sunt. Adipisci eius ipsum nobis nulla.</p> | ||
|
||
<hr> | ||
<p class="mb-0">Lorem ipsum dolor sit amet, consectetur adipisicing elit. Ab aperiam consectetur consequuntur cumque dolorem, | ||
ex fugit id illo iure labore officia, pariatur quibusdam, veritatis? Dicta eos quaerat ut voluptas voluptatem?</p> | ||
</div> | ||
|
||
|
||
<!-- Progress Bars --> | ||
<div class="progress"> | ||
<div class="progress-bar" style="width:35%;"></div> | ||
</div> | ||
<br> | ||
<div class="progress"> | ||
<div class="progress-bar" style="width:35%;">35%</div> | ||
</div> | ||
<br> | ||
<div class="progress"> | ||
<div class="progress-bar bg-success" style="width:5%;"></div> | ||
</div> | ||
<br> | ||
<div class="progress"> | ||
<div class="progress-bar bg-info" style="width:75%;"></div> | ||
</div> | ||
<br> | ||
<div class="progress"> | ||
<div class="progress-bar bg-warning" style="width:35%;"></div> | ||
</div> | ||
<br> | ||
<!-- Height --> | ||
<div class="progress" style="height:1px;"> | ||
<div class="progress-bar bg-success" style="width:75%;"></div> | ||
</div> | ||
<br> | ||
<!-- Stripped --> | ||
<div class="progress"> | ||
<div class="progress-bar bg-danger progress-bar-striped" style="width:35%;"></div> | ||
</div> | ||
<br> | ||
<!-- Animated --> | ||
<div class="progress"> | ||
<div class="progress-bar bg-info progress-bar-striped progress-bar-animated" style="width:35%;"></div> | ||
</div> | ||
<br> | ||
<!-- Multiple Bars --> | ||
<div class="progress"> | ||
<div class="progress-bar bg-warning" style="width:25%;"></div> | ||
<div class="progress-bar bg-success" style="width:25%;"></div> | ||
<div class="progress-bar bg-primary" style="width:25%;"></div> | ||
</div> | ||
|
||
<div style="margin-bottom:200px;"></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.3/umd/popper.min.js" | ||
integrity="sha384-ZMP7rVo3mIykV+2+9J3UJ46jBk0WLaUAdn689aCwoqbBJiSnjAK/l8WvCWPIPm49" crossorigin="anonymous"></script> | ||
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/js/bootstrap.min.js" | ||
integrity="sha384-ChfqqxuZUCnJSK3+MXmPNIyE6ZbWh2IMqE241rYiqJxyMiZ6OW/JmZQ5stwEULTy" crossorigin="anonymous"></script> | ||
</body> | ||
</html> |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,117 @@ | ||
<!-- Bootstrap 4 starter template --> | ||
<!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.1.3/css/bootstrap.min.css" | ||
integrity="sha384-MCw98/SFnGE8fJT3GXwEOngsV7Zt27NXFoaoApmYm81iuXoPkFOJwJ8ERdknLPMO" crossorigin="anonymous"> | ||
|
||
<title>Input groups</title> | ||
</head> | ||
<body> | ||
<br> | ||
<br> | ||
<div class="container"> | ||
|
||
<!-- Basic Input Groups --> | ||
<div class="input-group mb-3"> | ||
<div class="input-group-prepend"> | ||
<span class="input-group-text">@</span> | ||
</div> | ||
<input class="form-control" type="text" placeholder="Username"> | ||
</div> | ||
|
||
<br> | ||
|
||
<div class="input-group mb-3"> | ||
<input class="form-control" type="text" placeholder="username"> | ||
<div class="input-group-append"> | ||
<span class="input-group-text">@something.com</span> | ||
</div> | ||
</div> | ||
|
||
<br> | ||
|
||
<label for="basic-url">Custom URL</label> | ||
<div class="input-group mb-3"> | ||
<div class="input-group-prepend"> | ||
<span class="input-group-text">https://something.com/member/</span> | ||
</div> | ||
<input class="forn-control" type="text"> | ||
</div> | ||
|
||
<br> | ||
|
||
<div class="input-group mb-3"> | ||
<div class="input-group-prepend"> | ||
<span class="input-group-text">$</span> | ||
</div> | ||
<input class="form-control" type="text"> | ||
<div class="input-group-append"> | ||
<span class="input-group-text">.00</span> | ||
</div> | ||
</div> | ||
|
||
<br> | ||
|
||
<!-- Checkbox --> | ||
<div class="input-group mb-3"> | ||
<div class="input-group-prepend"> | ||
<div class="input-group-text"> | ||
<input type="checkbox"> | ||
</div> | ||
</div> | ||
<input class="form-control" type="text"> | ||
</div> | ||
|
||
<br> | ||
|
||
<!-- Radio --> | ||
<div class="input-group mb-3"> | ||
<div class="input-group-prepend"> | ||
<div class="input-group-text"> | ||
<input type="radio"> | ||
</div> | ||
</div> | ||
<input class="form-control" type="text"> | ||
</div> | ||
|
||
<br> | ||
|
||
<!-- Multiple Inputs --> | ||
<div class="input-group mb-3"> | ||
<div class="input-group-prepend"> | ||
<span class="input-group-text">Name and Email</span> | ||
</div> | ||
<input class="form-control" type="text" placeholder="Full name"> | ||
<input class="form-control" type="email" placeholder="Email"> | ||
</div> | ||
|
||
<br> | ||
|
||
<!-- Button Addons --> | ||
<div class="input-group mb-3"> | ||
<input class="form-control" type="text" placeholder="Find by name..."> | ||
<div class="input-group-append"> | ||
<button class="btn btn-outline-secondary" type="button">Search</button> | ||
</div> | ||
</div> | ||
|
||
<br> | ||
|
||
</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.3/umd/popper.min.js" | ||
integrity="sha384-ZMP7rVo3mIykV+2+9J3UJ46jBk0WLaUAdn689aCwoqbBJiSnjAK/l8WvCWPIPm49" crossorigin="anonymous"></script> | ||
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/js/bootstrap.min.js" | ||
integrity="sha384-ChfqqxuZUCnJSK3+MXmPNIyE6ZbWh2IMqE241rYiqJxyMiZ6OW/JmZQ5stwEULTy" crossorigin="anonymous"></script> | ||
</body> | ||
</html> |
Oops, something went wrong.