Skip to content

Commit

Permalink
Add Registration form
Browse files Browse the repository at this point in the history
Signed-off-by: Choonho Son <choonho.son@snu.ac.kr>
  • Loading branch information
Choonho Son committed Mar 29, 2024
1 parent 0a84f2b commit 95e7617
Show file tree
Hide file tree
Showing 2 changed files with 51 additions and 0 deletions.
1 change: 1 addition & 0 deletions content/register.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
date = "2024-03-16"
aliases = ["sign-up", "register"]
author = "Hugo Authors"
layout = "register"
+++

{{< rawhtml >}}
Expand Down
50 changes: 50 additions & 0 deletions themes/up-business-theme/layouts/page/register.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
{{ define "main" }}
<div class="container">
<section class="section py-5">
<div class="row">
<div class="col">
<div class="container-fluid">
<div class="row">
<div class="col d-flex justify-content-center">
<div class="display-6 fw-bolder">Live Demo User</div>
</div>
</div>
<div class="row shadow-sm">
<form id="register_1">
<br>
<div class="form-group">
<label for="InputEmail1">Email address</label>
<input type="email" class="form-control" id="InputEmail1" aria-describedby="emailHelp" placeholder="Enter email">
<small id="emailHelp" class="form-text text-muted">We will send email for reset password.</small>
</div>
<br>

<script src="https://www.google.com/recaptcha/api.js" async defer></script>
<div class="g-recaptcha" data-sitekey="6LcEyqgpAAAAAKTBSt2fV-9-VNlsHOxNT8Viq58z"></div>

<div class="form-group form-check">
<input type="checkbox" class="form-check-input" id="exampleCheck1">
<label class="form-check-label" for="exampleCheck1">By signing up, I agree to the AuroraStack Privacy Policy and Terms of Service.</label>
</div>
<button type="submit" class="btn btn-primary">Sign Up</button>
</form>
</div>
</div>
</div>

<div class="col">
<div class="container-fluid">
<div class="row">
<div class="col d-flex justify-content-center">
<div class="display-6 fw-bolder">Self Service</div>
</div>
</div>
<div class="row shadow-sm">
afdfdf
</div>
</div>
</div>
</div>
</section>
</div>
{{ end }}

0 comments on commit 95e7617

Please sign in to comment.