mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2024-11-26 11:51:02 +00:00
Merge pull request #87 from pythonandchips/master
Add form tag to make install work.
This commit is contained in:
commit
4648ca9669
1 changed files with 12 additions and 10 deletions
|
@ -2,16 +2,18 @@
|
|||
|
||||
{{ define "content" }}
|
||||
<h1>Installation</h1>
|
||||
<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 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" }}
|
||||
|
|
Loading…
Reference in a new issue