mqtt_server/app/ui.html
martind2000 c9b90f2221 updates
2017-01-06 16:59:39 +00:00

62 lines
1.8 KiB
HTML
Raw Permalink Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
</head>
<body>
<h1>Clean Webkit CSS3 UI</h1>
<section class="tabs">
<input id="tab-1" type="radio" name="radio-set" class="tab-selector-1" checked="checked" />
<label for="tab-1" class="tab-label-1">Elements</label>
<input id="tab-2" type="radio" name="radio-set" class="tab-selector-2" />
<label for="tab-2" class="tab-label-2">Text Fields</label>
<input id="tab-3" type="radio" name="radio-set" class="tab-selector-3" />
<label for="tab-3" class="tab-label-3">Details</label>
<div class="clear-shadow"></div>
<div class="content">
<div class="content-1">
Slider (Range)
<input type="range">
Toggles (Checkboxes)
<input type="checkbox" unchecked>
<input type="checkbox" checked>
Radio buttons<br />
<input type="radio" name="choix">
<input type="radio" name="choix" checked>
</div>
<div class="content-2">
Text Fields
<input type="text" placeholder="Username" name="input_text">
Password Fields
<input type="password" placeholder="Password" name="password">
<input type="submit" value="Submit »">
</div>
<div class="content-3">
<p><b>The Clean Webkit CSS3 UI inclued:</b></p>
<p>Form Inputs
<br/>- Range
<br/>- Checkboxes
<br/>- Radio buttons
<br/>- Submit button
<br/>- Text and password fields</p>
<p>CSS3 Tabs with radio buttons
<br/>Custom scrollbar</p>
<br />
<p>ericftremblay.com</p>
<p>github.com/ericft</p>
</div>
</div>
</section>
</body>
</html>