123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474 |
- <!DOCTYPE html>
- <html class="no-js" lang="en">
- <head>
- <meta charset="utf-8" />
- <meta content="IE=edge,chrome=1" http-equiv="X-UA-Compatible" />
- <title>Forms</title>
- <meta content="lab2023" name="author" />
- <meta content="" name="description" />
- <meta content="" name="keywords" />
- <link
- href="{{url_for('static', filename='css/main.css')}}"
- rel="stylesheet"
- />
- <link
- href="https://netdna.bootstrapcdn.com/font-awesome/3.2.0/css/font-awesome.min.css"
- rel="stylesheet"
- />
- <link href="{{url_for('static', filename='img/favicon.ico')}}" rel="icon" />
- </head>
- <body class="main page">
- <!-- Navbar -->
- <div class="navbar navbar-default" id="navbar">
- <a class="navbar-brand" href="{{ url_for('get_home') }}">
- <i class="icon-beer"></i>
- Hierapolis
- </a>
- <ul class="nav navbar-nav pull-right">
- <li class="dropdown">
- <a class="dropdown-toggle" data-toggle="dropdown" href="#">
- <i class="icon-envelope"></i>
- Messages
- <span class="badge">5</span>
- <b class="caret"></b>
- </a>
- <ul class="dropdown-menu">
- <li>
- <a href="#">New message</a>
- </li>
- <li>
- <a href="#">Inbox</a>
- </li>
- <li>
- <a href="#">Out box</a>
- </li>
- <li>
- <a href="#">Trash</a>
- </li>
- </ul>
- </li>
- <li>
- <a href="#">
- <i class="icon-cog"></i>
- Settings
- </a>
- </li>
- <li class="dropdown user">
- <a class="dropdown-toggle" data-toggle="dropdown" href="#">
- <i class="icon-user"></i>
- <strong>John DOE</strong>
- <img class="img-rounded" src="http://placehold.it/20x20/ccc/777" />
- <b class="caret"></b>
- </a>
- <ul class="dropdown-menu">
- <li>
- <a href="{{ url_for('get_profile') }}">Edit Profile</a>
- </li>
- <li class="divider"></li>
- <li>
- <a href="{{ url_for('get_home') }}">Sign out</a>
- </li>
- </ul>
- </li>
- </ul>
- </div>
- <div id="wrapper">
- <!-- Sidebar -->
- <section id="sidebar">
- <i class="icon-align-justify icon-large" id="toggle"></i>
- <ul id="dock">
- <li class="launcher">
- <i class="icon-dashboard"></i>
- <a href="/dashboard">Dashboard</a>
- </li>
- <li class="active launcher">
- <i class="icon-file-text-alt"></i>
- <a href="forms.html">Forms</a>
- </li>
- <li class="launcher">
- <i class="icon-table"></i>
- <a href="tables.html">Tables</a>
- </li>
- <li class="launcher dropdown hover">
- <i class="icon-flag"></i>
- <a href="#">Reports</a>
- <ul class="dropdown-menu">
- <li class="dropdown-header">Launcher description</li>
- <li>
- <a href="#">Action</a>
- </li>
- <li>
- <a href="#">Another action</a>
- </li>
- <li>
- <a href="#">Something else here</a>
- </li>
- </ul>
- </li>
- <li class="launcher">
- <i class="icon-bookmark"></i>
- <a href="#">Bookmarks</a>
- </li>
- <li class="launcher">
- <i class="icon-cloud"></i>
- <a href="#">Backup</a>
- </li>
- <li class="launcher">
- <i class="icon-bug"></i>
- <a href="#">Feedback</a>
- </li>
- </ul>
- <div data-toggle="tooltip" id="beaker" title="Made by lab2023"></div>
- </section>
- <!-- Tools -->
- <section id="tools">
- <ul class="breadcrumb" id="breadcrumb">
- <li class="title">Forms</li>
- <li><a href="#">Lorem</a></li>
- <li class="active"><a href="#">ipsum</a></li>
- </ul>
- <div id="toolbar"></div>
- </section>
- <!-- Content -->
- <div id="content">
- <div class="panel panel-default">
- <div class="panel-heading">
- <i class="icon-edit icon-large"></i>
- Form Default
- </div>
- <div class="panel-body">
- <form>
- <fieldset>
- <legend>Default Inputs</legend>
- <div class="form-group">
- <label class="control-label">Text field</label>
- <input
- class="form-control"
- placeholder="Enter username"
- type="text"
- />
- </div>
- <div class="form-group">
- <label class="control-label">Password field</label>
- <input
- class="form-control"
- placeholder="Enter password"
- type="password"
- />
- </div>
- <div class="form-group">
- <label class="control-label">Input field with help</label>
- <input class="form-control" placeholder=".help-block" />
- <p class="help-block">Example block-level help text here.</p>
- </div>
- <div class="form-group">
- <label class="control-label">Disabled field</label>
- <input
- class="form-control"
- disabled
- placeholder="This is field is disabled!"
- />
- </div>
- <div class="form-group">
- <label class="control-label">Tooltip field</label>
- <input
- class="form-control"
- data-toggle="tooltip"
- placeholder="This is field is disabled!"
- title="Input tips here"
- />
- </div>
- <div class="form-group">
- <label class="control-label">Textarea field</label>
- <textarea class="form-control" rows="4"></textarea>
- </div>
- <div class="form-group">
- <label class="control-label">File input</label>
- <input type="file" />
- </div>
- <div class="form-group">
- <label class="control-label">Large field</label>
- <input
- class="form-control input-lg"
- placeholder=".input-lg"
- type="text"
- />
- </div>
- <div class="form-group">
- <label class="control-label">Small field</label>
- <input
- class="form-control input-sm"
- placeholder=".input-sm"
- type="text"
- />
- </div>
- <div class="form-group row">
- <div class="col-lg-2">
- <label class="control-label">Column sizing</label>
- <input
- class="form-control"
- placeholder=".col-lg-2"
- type="text"
- />
- </div>
- <div class="col-lg-3">
- <label class="control-label">Column sizing</label>
- <input
- class="form-control"
- placeholder=".col-lg-3"
- type="text"
- />
- </div>
- <div class="col-lg-7">
- <label class="control-label">Column sizing</label>
- <input
- class="form-control"
- placeholder=".col-lg-7"
- type="text"
- />
- </div>
- </div>
- </fieldset>
- <fieldset>
- <legend>Input Validation States</legend>
- <div class="form-group has-warning">
- <label class="control-label">Input field with help</label>
- <input class="form-control" placeholder=".has-warning" />
- <p class="help-block">Example block-level help text here.</p>
- </div>
- <div class="form-group has-error">
- <label class="control-label">Input field with help</label>
- <input class="form-control" placeholder=".has-error" />
- <p class="help-block">Example block-level help text here.</p>
- </div>
- <div class="form-group has-success">
- <label class="control-label">Input field with help</label>
- <input class="form-control" placeholder=".has-success" />
- <p class="help-block">Example block-level help text here.</p>
- </div>
- </fieldset>
- <fieldset>
- <legend>Checkboxes and radios</legend>
- <div class="form-group">
- <label class="control-label">Checkbox</label>
- <div class="checkbox">
- <input type="checkbox" value="" />
- Option one is this and that—be sure to include why
- it's great
- </div>
- </div>
- <div class="form-group">
- <label class="control-label">Inline checkbox</label>
- <br />
- <div class="checkbox-inline">
- <input type="checkbox" value="" />
- 1
- </div>
- <div class="checkbox-inline">
- <input type="checkbox" value="" />
- 2
- </div>
- <div class="checkbox-inline">
- <input type="checkbox" value="" />
- 3
- </div>
- </div>
- <div class="form-group">
- <label class="control-label">Radio</label>
- <div class="radio">
- <input
- checked
- name="options_radio"
- type="radio"
- value="option1"
- />
- Option one is this and that—be sure to include why
- it's great
- <br />
- <input
- checked
- name="options_radio"
- type="radio"
- value="option2"
- />
- Option two can be something else and selecting it will
- deselect option one
- </div>
- </div>
- </fieldset>
- <fieldset>
- <legend>Selects</legend>
- <div class="form-group">
- <label class="control-label">Single select</label>
- <select class="form-control">
- <option>1</option>
- <option>2</option>
- <option>3</option>
- <option>4</option>
- <option>5</option>
- </select>
- </div>
- <div class="form-group">
- <label class="control-label">Multiple select</label>
- <select class="form-control" multiple>
- <option>1</option>
- <option>2</option>
- <option>3</option>
- <option>4</option>
- <option>5</option>
- </select>
- </div>
- </fieldset>
- <div class="form-actions">
- <button class="btn btn-default" type="submit">Submit</button>
- <a class="btn" href="#">Cancel</a>
- </div>
- </form>
- </div>
- </div>
- <div class="panel panel-default">
- <div class="panel-heading">
- <i class="icon-edit icon-large"></i>
- Form Horizontal
- </div>
- <div class="panel-body">
- <form class="form-horizontal">
- <fieldset>
- <legend>Default inputs</legend>
- <div class="form-group">
- <label class="col-lg-2 control-label">Text field</label>
- <div class="col-lg-10">
- <input
- class="form-control"
- placeholder="Enter username"
- type="text"
- />
- </div>
- </div>
- <div class="form-group">
- <label class="col-lg-2 control-label">Password field</label>
- <div class="col-lg-10">
- <input
- class="form-control"
- placeholder="Enter password"
- type="password"
- />
- </div>
- </div>
- <div class="form-group">
- <label class="col-lg-2 control-label"
- >Input field with help</label
- >
- <div class="col-lg-10">
- <input class="form-control" placeholder=".help-block" />
- <p class="help-block">
- Example block-level help text here.%fieldset
- </p>
- </div>
- </div>
- <legend>Validation inputs</legend>
- <div class="form-group has-warning">
- <label class="col-lg-2 control-label">Text field</label>
- <div class="col-lg-10">
- <input
- class="form-control"
- placeholder="Enter username"
- type="text"
- />
- </div>
- </div>
- <div class="form-group has-error">
- <label class="col-lg-2 control-label">Password field</label>
- <div class="col-lg-10">
- <input
- class="form-control"
- placeholder="Enter password"
- type="password"
- />
- </div>
- </div>
- <div class="form-group has-success">
- <label class="col-lg-2 control-label"
- >Input field with help</label
- >
- <div class="col-lg-10">
- <input class="form-control" placeholder=".help-block" />
- <p class="help-block">
- Example block-level help text here.
- </p>
- </div>
- </div>
- </fieldset>
- <div class="form-actions">
- <button class="btn btn-default" type="submit">Save</button>
- <a class="btn" href="#">Cancel</a>
- </div>
- </form>
- </div>
- </div>
- <div class="panel panel-default">
- <div class="panel-heading">
- <i class="icon-edit icon-large"></i>
- Knob Inputs
- </div>
- <div class="panel-body text-center">
- <input
- class="knob"
- data-height="150"
- data-width="150"
- type="text"
- value="75"
- />
- <input
- class="knob"
- data-fgColor="#16a085"
- data-height="150"
- data-width="150"
- type="text"
- value="100"
- />
- <input
- class="knob"
- data-fgColor="#7f8c8d"
- data-height="150"
- data-width="150"
- type="text"
- value="200"
- />
- </div>
- </div>
- </div>
- </div>
- <!-- Footer -->
- <!-- Javascripts -->
- <script
- src="//ajax.googleapis.com/ajax/libs/jquery/1.10.1/jquery.min.js"
- type="text/javascript"
- ></script>
- <script
- src="//ajax.googleapis.com/ajax/libs/jqueryui/1.10.3/jquery-ui.min.js"
- type="text/javascript"
- ></script>
- <script
- src="//cdnjs.cloudflare.com/ajax/libs/modernizr/2.6.2/modernizr.min.js"
- type="text/javascript"
- ></script>
- <script
- src="assets/javascripts/application-985b892b.js"
- type="text/javascript"
- ></script>
- <!-- Google Analytics -->
- <script>
- var _gaq = [["_setAccount", "UA-XXXXX-X"], ["_trackPageview"]];
- (function (d, t) {
- var g = d.createElement(t),
- s = d.getElementsByTagName(t)[0];
- g.src =
- ("https:" == location.protocol ? "//ssl" : "//www") +
- ".google-analytics.com/ga.js";
- s.parentNode.insertBefore(g, s);
- })(document, "script");
- </script>
- </body>
- </html>
|