mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2024-11-05 16:39:50 +00:00
5d9d367b78
There seems to be no javascript to post this form and no form tag to make the form work so added one
24 lines
900 B
HTML
24 lines
900 B
HTML
{{ define "title" }}Installation · drone.io{{ end }}
|
|
|
|
{{ define "content" }}
|
|
<h1>Installation</h1>
|
|
<form action="install" method="post">
|
|
<div>
|
|
<input class="form-control" type="text" name="name" placeholder="Full Name (e.g. John Smith)" autocomplete="off" spellcheck="off" />
|
|
<input class="form-control" type="text" name="email" placeholder="Email Address" autocomplete="off" spellcheck="off" style="border-top:0px;border-radius:0px;" />
|
|
<input class="form-control" type="password" name="password" placeholder="Password" />
|
|
</div>
|
|
<div>
|
|
<input type="hidden" name="Scheme" />
|
|
<input type="hidden" name="Domain" />
|
|
<input type="submit" value="Create Admin" />
|
|
</div>
|
|
</form>
|
|
{{ end }}
|
|
|
|
{{ define "script" }}
|
|
<script>
|
|
$("input[name=Domain]").val(window.location.host)
|
|
$("input[name=Scheme]").val(window.location.protocol == "https:"?"https":"http")
|
|
</script>
|
|
{{ end }}
|