mirror of
https://github.com/number571/blockchain.git
synced 2026-09-12 19:50:00 +05:00
21 lines
693 B
HTML
21 lines
693 B
HTML
{{define "title"}}
|
|
Signup
|
|
{{end}}
|
|
|
|
{{define "content"}}
|
|
<div class="col-md-8 mx-auto">
|
|
<div class="jumbotron">
|
|
<div class="col-10 mx-auto">
|
|
<form method="POST" action="/signup">
|
|
<div class="form-group">
|
|
{{ if .PrivateKey }}
|
|
<input readonly type="text" class="form-control bg-light" value="{{ .PrivateKey }}" id="private">
|
|
{{ end }}
|
|
</div>
|
|
<input type="submit" class="btn btn-success w-100" name="generate" value="Generate Private Key">
|
|
</form>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{{end}}
|