-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Choonho Son <choonho.son@snu.ac.kr>
- Loading branch information
Choonho Son
committed
Mar 29, 2024
1 parent
0a84f2b
commit 95e7617
Showing
2 changed files
with
51 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 }} |