convert admin template into go template
This commit is contained in:
116
static/admin/pages/samples/register-2.html
Normal file
116
static/admin/pages/samples/register-2.html
Normal file
@ -0,0 +1,116 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
|
||||
<head>
|
||||
<!-- Required meta tags -->
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
||||
<title>RoyalUI Admin</title>
|
||||
<!-- plugins:css -->
|
||||
<link rel="stylesheet" href="../../vendors/ti-icons/css/themify-icons.css">
|
||||
<link rel="stylesheet" href="../../vendors/base/vendor.bundle.base.css">
|
||||
<!-- endinject -->
|
||||
<!-- plugin css for this page -->
|
||||
<!-- End plugin css for this page -->
|
||||
<!-- inject:css -->
|
||||
<link rel="stylesheet" href="../../css/style.css">
|
||||
<!-- endinject -->
|
||||
<link rel="shortcut icon" href="../../images/favicon.png" />
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<div class="container-scroller">
|
||||
<div class="container-fluid page-body-wrapper full-page-wrapper">
|
||||
<div class="content-wrapper d-flex align-items-stretch auth auth-img-bg">
|
||||
<div class="row flex-grow">
|
||||
<div class="col-lg-6 d-flex align-items-center justify-content-center">
|
||||
<div class="auth-form-transparent text-left p-3">
|
||||
<div class="brand-logo">
|
||||
<img src="../../images/logo.svg" alt="logo">
|
||||
</div>
|
||||
<h4>New here?</h4>
|
||||
<h6 class="font-weight-light">Join us today! It takes only few steps</h6>
|
||||
<form class="pt-3">
|
||||
<div class="form-group">
|
||||
<label>Username</label>
|
||||
<div class="input-group">
|
||||
<div class="input-group-prepend bg-transparent">
|
||||
<span class="input-group-text bg-transparent border-right-0">
|
||||
<i class="ti-user text-primary"></i>
|
||||
</span>
|
||||
</div>
|
||||
<input type="text" class="form-control form-control-lg border-left-0" placeholder="Username">
|
||||
</div>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label>Email</label>
|
||||
<div class="input-group">
|
||||
<div class="input-group-prepend bg-transparent">
|
||||
<span class="input-group-text bg-transparent border-right-0">
|
||||
<i class="ti-email text-primary"></i>
|
||||
</span>
|
||||
</div>
|
||||
<input type="email" class="form-control form-control-lg border-left-0" placeholder="Email">
|
||||
</div>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label>Country</label>
|
||||
<select class="form-control form-control-lg" id="exampleFormControlSelect2">
|
||||
<option>Country</option>
|
||||
<option>United States of America</option>
|
||||
<option>United Kingdom</option>
|
||||
<option>India</option>
|
||||
<option>Germany</option>
|
||||
<option>Argentina</option>
|
||||
</select>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label>Password</label>
|
||||
<div class="input-group">
|
||||
<div class="input-group-prepend bg-transparent">
|
||||
<span class="input-group-text bg-transparent border-right-0">
|
||||
<i class="ti-lock text-primary"></i>
|
||||
</span>
|
||||
</div>
|
||||
<input type="password" class="form-control form-control-lg border-left-0" id="exampleInputPassword" placeholder="Password">
|
||||
</div>
|
||||
</div>
|
||||
<div class="mb-4">
|
||||
<div class="form-check">
|
||||
<label class="form-check-label text-muted">
|
||||
<input type="checkbox" class="form-check-input">
|
||||
I agree to all Terms & Conditions
|
||||
</label>
|
||||
</div>
|
||||
</div>
|
||||
<div class="mt-3">
|
||||
<a class="btn btn-block btn-primary btn-lg font-weight-medium auth-form-btn" href="../../index.html">SIGN UP</a>
|
||||
</div>
|
||||
<div class="text-center mt-4 font-weight-light">
|
||||
Already have an account? <a href="login.html" class="text-primary">Login</a>
|
||||
</div>
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-lg-6 register-half-bg d-flex flex-row">
|
||||
<p class="text-white font-weight-medium text-center flex-grow align-self-end">Copyright © 2021 All rights reserved.</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<!-- content-wrapper ends -->
|
||||
</div>
|
||||
<!-- page-body-wrapper ends -->
|
||||
</div>
|
||||
<!-- container-scroller -->
|
||||
<!-- plugins:js -->
|
||||
<script src="../../vendors/base/vendor.bundle.base.js"></script>
|
||||
<!-- endinject -->
|
||||
<!-- inject:js -->
|
||||
<script src="../../js/off-canvas.js"></script>
|
||||
<script src="../../js/hoverable-collapse.js"></script>
|
||||
<script src="../../js/template.js"></script>
|
||||
<script src="../../js/todolist.js"></script>
|
||||
<!-- endinject -->
|
||||
</body>
|
||||
|
||||
</html>
|
Reference in New Issue
Block a user