-
Notifications
You must be signed in to change notification settings - Fork 0
/
createaccount.html
57 lines (51 loc) · 2.91 KB
/
createaccount.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>RhinoCMS | Create Account</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/4.0.0/css/bootstrap.min.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/3.5.2/animate.min.css">
<link rel="stylesheet" href="assets/css/styles.min.css">
<script src="http://cdn.ckeditor.com/4.6.1/standard/ckeditor.js"></script>
</head>
<body>
<div class="register-photo">
<div class="form-container">
<div class="image-holder"
style="background-image:url("https://images.unsplash.com/photo-1561058195-308d234bfc0c?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=634&q=80");background-position:center;background-size:cover;">
</div>
<form method="post">
<h2 class="text-center"><strong>Create</strong> an account.</h2>
<div class="form-group"><input class="form-control" type="email" name="email" placeholder="Email"></div>
<div class="form-group"><input class="form-control" type="password" name="password"
placeholder="Password"></div>
<div class="form-group"><input class="form-control" type="password" name="password-repeat"
placeholder="Password (repeat)"></div>
<div class="form-group">
<div class="form-check"><label class="form-check-label"><input class="form-check-input"
type="checkbox">I agree to the license terms.</label></div>
</div><button class="btn btn-dark btn-block" type="submit" data-bs-hover-animate="pulse">Create an
account<br></button><a href="login.html" class="already" style="margin:12px 0px 0px 0px;">You
already have an account? Login here.</a>
</form>
</div>
</div>
<footer id="footer" style="background-color:#343a40;padding:20px;">
<div class="container">
<p class="text-center text-white" style="margin:10px;">Copyright RhinoCMS, © 2019<br></p>
</div>
</footer>
<!--- Replacing Editors With CKEDITOR-->
<script>
// Replace the <textarea id="editor1"> with a CKEditor
// instance, using default configuration.
CKEDITOR.replace('editor1');
CKEDITOR.replace('editor2');
</script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/4.0.0/js/bootstrap.bundle.min.js"></script>
<script src="assets/js/script.min.js"></script>
</body>
</html>