aboutsummaryrefslogtreecommitdiff
path: root/views/pages/api_couple.html
blob: b21d349cdbc154ca5c77953cd1a0a7d35e475f9b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
{{ define "api_couple" }}
<html>
	<head>
		{{ template "materialize" }}
		<title>{{ .name }} - grilist</title>
		<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no">
	</head>
	<body>
		{{ template "navbar" . }}
		<div class="container">
			{{ if .error }}
			<div class="card-panel red darken-4">
				<span class="white-text">{{ .error }}</span>
			</div>
			{{ end }}
			<form method="POST" action="couple">
				<blockquote>
					{{ .name }} wurde in einem neuen Tab/Fenster geöffnet. Bitte bestätige dort Grilist und kopiere den Code in das unten stehende Feld.
				</blockquote>
				<input name="code" placeholder="Code" type="text" class="validate">
				<button class="btn waves-effect waves-light purple lighten-2" type="submit">
					{{ .name }} verbinden <i class="material-icons right">send</i>
				</button>
			</form>
		</div>
	</body>
</html>
{{ end }}