72 lines
2.3 KiB
HTML
Executable File
72 lines
2.3 KiB
HTML
Executable File
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<meta name="description" content="">
|
|
<meta name="author" content="">
|
|
<link rel="shortcut icon" href="../../assets/ico/favicon.ico">
|
|
|
|
<title>Navbar Template for Bootstrap RTL</title>
|
|
|
|
<!-- Bootstrap core CSS -->
|
|
<link href="../../bootstrap/dist/css/bootstrap.min.css" rel="stylesheet">
|
|
<!-- Bootstrap RTL theme -->
|
|
<link href="../../dist/css/bootstrap-rtl.min.css" rel="stylesheet">
|
|
|
|
</head>
|
|
|
|
<body role="document">
|
|
|
|
<div class="container">
|
|
|
|
<div class="form-group has-success">
|
|
<label class="control-label" for="inputSuccess1">Input with success</label>
|
|
<input type="text" class="form-control" id="inputSuccess1">
|
|
</div>
|
|
<div class="form-group has-warning">
|
|
<label class="control-label" for="inputWarning1">Input with warning</label>
|
|
<input type="text" class="form-control" id="inputWarning1">
|
|
</div>
|
|
<div class="input-group has-error">
|
|
<span class="input-group-addon" id="basic-addon1">@</span>
|
|
<input type="text" class="form-control" id="inputError1">
|
|
</div>
|
|
<div class="has-success">
|
|
<div class="checkbox">
|
|
<label>
|
|
<input type="checkbox" id="checkboxSuccess" value="option1">
|
|
Checkbox with success
|
|
</label>
|
|
</div>
|
|
</div>
|
|
<div class="has-warning">
|
|
<div class="checkbox">
|
|
<label>
|
|
<input type="checkbox" id="checkboxWarning" value="option1">
|
|
Checkbox with warning
|
|
</label>
|
|
</div>
|
|
</div>
|
|
<div class="has-error">
|
|
<div class="checkbox">
|
|
<label>
|
|
<input type="checkbox" id="checkboxError" value="option1">
|
|
Checkbox with error
|
|
</label>
|
|
</div>
|
|
</div>
|
|
|
|
</div>
|
|
<!-- Bootstrap core JavaScript
|
|
================================================== -->
|
|
<!-- Placed at the end of the document so the pages load faster -->
|
|
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
|
|
<script src="../../bootstrap/dist/js/bootstrap.min.js"></script>
|
|
<script type="text/javascript">
|
|
$('button').popover();
|
|
</script>
|
|
</body>
|
|
</html>
|