mirror of
https://github.com/dutchcoders/transfer.sh.git
synced 2025-01-06 01:10:18 +01:00
cb6e5cb0c7
* use dep for vendoring * lets encrypt * moved web to transfer.sh-web repo * single command install * added first tests
28 lines
1.1 KiB
Cheetah
28 lines
1.1 KiB
Cheetah
<html>
|
|
<head>
|
|
<title>{{ .Title }}</title>
|
|
<link type="text/css" rel="stylesheet" href="/public/styles.css">
|
|
<link type="text/css" rel="stylesheet" href="/public/bootstrap-combined.min.css">
|
|
</head>
|
|
<body>
|
|
<h1>Session: {{ .SessionID }}</h1>
|
|
<ol>
|
|
<li><a href="/">Home</a></li>
|
|
<li><a href="/session">Session</a></li>
|
|
<li><a href="/session/auth">Authenticated Session</a></li>
|
|
<li><a href="/context">Chained Context</a></li>
|
|
<li><a href="/panic">Panic</a></li>
|
|
<li><a href="/public/styles.css">Styles.css</a></li>
|
|
<li><a href="/public/jquery-2.0.0.min.js">JQuery</a></li>
|
|
<li><a href="/public/logo.png">Logo</a></li>
|
|
</ol>
|
|
<h2>Current Value: {{ .Text }}</h2>
|
|
<form method="POST">
|
|
<input type="text" name="txt" placeholder="some value to save to session"></input>
|
|
<button type="submit">Submit</button>
|
|
</form>
|
|
|
|
<script src="/public/jquery-2.0.0.min.js"></script>
|
|
</body>
|
|
</html>
|
|
|