diff options
| author | arf20 <aruizfernandez05@gmail.com> | 2025-11-29 05:02:41 +0100 |
|---|---|---|
| committer | arf20 <aruizfernandez05@gmail.com> | 2025-11-29 05:02:41 +0100 |
| commit | 8871f7b50bc6fef814254c85b851e05d638e66be (patch) | |
| tree | 433776dc7b670b0e20b8f26516d36767f3a67f36 /index.htm.tmpl | |
| download | arfnet2-search-8871f7b50bc6fef814254c85b851e05d638e66be.tar.gz arfnet2-search-8871f7b50bc6fef814254c85b851e05d638e66be.zip | |
initial commit
Diffstat (limited to 'index.htm.tmpl')
| -rw-r--r-- | index.htm.tmpl | 60 |
1 files changed, 60 insertions, 0 deletions
diff --git a/index.htm.tmpl b/index.htm.tmpl new file mode 100644 index 0000000..03f228b --- /dev/null +++ b/index.htm.tmpl @@ -0,0 +1,60 @@ +<!DOCTYPE html> +<html> + <head> + <meta charset="UTF-8"> + <link rel="stylesheet" type="text/css" href="https://arf20.com/style.css"> + <title>ARFNET</title> + <style> +.box { + margin: auto; + width: 50%; + padding-top: 20vh; + min-width: 400px; + display: block; +} + +/* Style the form - display items horizontally */ +.form-inline { + display: flex; + flex-flow: row wrap; + align-items: center; +} + +/* Add some margins for each label */ +.form-inline label { + +} + +/* Style the input fields */ +.form-inline input { + flex-grow: 1; + vertical-align: middle; + background-color: #fff; + border: 1px solid #ddd; +} + +.form-inline button { + border: none; +} + +</style> + </head> + + <body> + <header><a href="http://arf20.com"> + <img src="http://arf20.com/arfnet_logo.png" width="64"><span class="title"><strong>ARFNET</strong></span> + </a></header> + <hr> + <main> + <h2 class="center">Search</h2> + <p>Search all of the ARFNET content fast</p> + <div class="box"> + <form class="form-inline" action="/" method="get"> + <input class="input" type="text" name="query"> + <button type="submit">Search</button> + </form> + </div> + </main> + </body> +</html> + |
