Goit

Simple and lightweight Git web server
git clone https://git.omkov.net/Goit
git clone [email protected]:Goit
Log | Tree | Refs | README | Download

Goit/res/user/keys_add.html (23 lines, 579 B) -rw-r--r-- blame download

012345678910111213141516171819202122
<!DOCTYPE html>
<html lang="en">
	<head>{{template "base/head" .}}</head>
	<body>
		<header>{{template "user/header" .}}</header><hr>
		<main>
			<form action="/user/keys/add" method="post">
				{{.CSRFField}}
				<table>
					<tr><td><label for="key">SSH Public Key</label></td></tr>
					<tr><td><textarea name="key" spellcheck="false">{{.Form.Key}}</textarea></td></tr>
					<tr>
						<td>
							<input type="submit" name="submit" value="Add">
							<span style="color: #AA0000">{{.Message}}</span>
						</td>
					</tr>
				</table>
			</form>
		</main>
	</body>
</html>