Files
ALPHA-TRAIN2/services/tiktak/templates/register.html
T
bobiqq c231be0094
build-and-push / detect (push) Successful in 7s
build-and-push / build (${{ fromJSON(needs.detect.outputs.services) }}) (push) Failing after 3m33s
services
2026-08-26 11:04:23 +03:00

31 lines
970 B
HTML

{{define "register"}}
{{template "header" .Error}}
<div class="ui text container">
<h1 class="ui header">Register</h1>
<div class="ui one column grid">
<div class="column">
<div class="ui message">
<h4 class="ui header">Sign-up to tiktak, best video service ever</h4>
</div>
</div>
</div>
</div>
<div class="ui text container">
<form class="ui form" method="post" action="">
<div class="field">
<label>Login</label>
<input type="text" required name="login" placeholder="admin">
</div>
<div class="field">
<label>Password</label>
<input type="password" required name="password" placeholder="">
</div>
<button class="ui button" type="submit">Submit</button>
</form>
</div>
{{template "footer"}}
{{ end }}