mirror of
https://github.com/freedombox/FreedomBox.git
synced 2026-04-29 10:10:19 +00:00
31 lines
771 B
Cheetah
31 lines
771 B
Cheetah
<html>
|
|
<head>
|
|
<style>
|
|
form {
|
|
display: inline;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<p>You are <a href="/hosting">hosting</a>
|
|
$service for <a href="/hosting/$client/">$client</a> at:</p>
|
|
#if $locations
|
|
<ul>
|
|
#for $location in $locations
|
|
<li><a href="$location">$location</a>
|
|
<form method="post" action="/hosting/$client/$service">
|
|
<input type="hidden" name="delete" value="$location" />
|
|
<input type="submit" value="Delete" />
|
|
</form>
|
|
</li>
|
|
#end for
|
|
</ul>
|
|
#end if
|
|
<hr />
|
|
<form method="post" action="/hosting/$client/$service">
|
|
<label>Location: <input name="put" /></label>
|
|
<input type="submit" value="Create New Location" />
|
|
</form>
|
|
</body>
|
|
</html>
|