Files
fnx_web/res/template/widgets.html

69 lines
1.8 KiB
HTML
Raw Normal View History

2019-02-18 22:42:20 +01:00
{{define "widgets"}}
<!DOCTYPE html>
2020-01-17 20:32:21 +01:00
<html lang="en">
2019-02-18 22:42:20 +01:00
<head>
2024-10-29 16:33:36 +01:00
{{template "meta_tags" "Cloud storage and data transfer services"}}
2019-02-18 22:42:20 +01:00
</head>
<body>
2019-12-23 23:56:57 +01:00
{{template "page_top" .}}
2022-03-08 23:34:10 +01:00
<header>
2019-02-18 22:42:20 +01:00
<h1>Widget showcase</h1>
2022-01-11 13:28:22 +01:00
</header>
2022-10-11 14:21:06 +02:00
<div id="page_content" class="page_content">
<section>
<h2>Size 2 header</h2>
<h3>Size 3 header</h3>
<h4>Size 4 header</h4>
<h5>Size 5 header</h5>
<h6>Size 6 header</h6>
2019-02-18 22:42:20 +01:00
2022-10-11 14:21:06 +02:00
<div class="highlight_shaded">Shaded highlight</div>
<br/>
Link <a href="#">A link to someplace</a>.
<hr/>
Buttons <button>Regular ol' button!</button>
Width indicator
<button class="button_highlight">Important button!</button>
Width indicator
<button class="button_red">Dangerous button!</button>
<hr/>
Textarea <textarea>Hello!</textarea>
<hr/>
Checkbox <input type="checkbox"/>
<hr/>
Radio
<input name="radioform" type="radio"/>
<input name="radioform" type="radio"/>
<hr/>
Text field <input type="text"/>
<hr/>
Password <input type="password"/>
<hr/>
Number <input type="number"/>
<hr/>
Select
<select name="select">
<option>cherry</option>
<option>orange</option>
<option>apple</option>
</select>
<hr/>
Select2 <select name="select2" size="3">
<option>cherry</option>
<option>orange</option>
<option>apple</option>
</select>
<hr/>
File <input type="file" name="file">
<hr/>
Color <input type="color" name="favcolor" value="#ff0000">
2019-02-18 22:42:20 +01:00
2022-10-11 14:21:06 +02:00
<br/><br/>
<iframe src="https://pixeldrain.com/u/Nygt1on4?embed" style="border: none; width: 800px; max-width: 100%; height: 600px; max-height: 100%; border-radius: 16px;"></iframe>
</section>
</div>
2020-01-31 19:16:20 +01:00
{{template "page_bottom" .}}
2019-02-18 22:42:20 +01:00
</body>
</html>
{{end}}