-
Notifications
You must be signed in to change notification settings - Fork 169
/
Copy pathsignup.html
141 lines (107 loc) · 5.71 KB
/
signup.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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
{% load static %}
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="{% static 'assets/images/favicon.png' %}" rel="icon" type="image/png">
<title>sign up</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="{% static 'assets/css/icons.css' %}">
<link rel="stylesheet" href="{% static 'assets/css/uikit.css' %}">
<link rel="stylesheet" href="{% static 'assets/css/style.css' %}">
<link rel="stylesheet" href="{% static 'assets/css/tailwind.css' %}">
</head>
<body class="bg-gray-100">
<div id="wrapper" class="flex flex-col justify-between h-screen">
<!-- header-->
<div class="bg-white py-4 shadow dark:bg-gray-800">
<div class="max-w-6xl mx-auto">
<div class="flex items-center lg:justify-between justify-around">
<a href="trending.html">
<b><h1 style="font-size: 1.5rem;">Socol</h1></b>
</a>
<div class="capitalize flex font-semibold hidden lg:block my-2 space-x-3 text-center text-sm">
<a href="signin.html" class="bg-pink-500 pink-500 px-6 py-3 rounded-md shadow text-white">Login</a>
</div>
</div>
</div>
</div>
<!-- Content-->
<div>
<div class="lg:p-12 max-w-md max-w-xl lg:my-0 my-12 mx-auto p-6 space-y-">
<h1 class="lg:text-3xl text-xl font-semibold mb-6"> Sign in</h1>
<!--<p class="mb-2 text-black text-lg"> Register to manage your account </p>-->
<form action="index.html">
<!--<div class="flex lg:flex-row flex-col lg:space-x-2">
<input type="text" placeholder="First Name" class="bg-gray-200 mb-2 shadow-none dark:bg-gray-800" style="border: 1px solid #d3d5d8 !important;">
<input type="text" placeholder="Last Name" class="bg-gray-200 mb-2 shadow-none dark:bg-gray-800" style="border: 1px solid #d3d5d8 !important;">
</div>-->
<input type="text" placeholder="Username" class="bg-gray-200 mb-2 shadow-none dark:bg-gray-800" style="border: 1px solid #d3d5d8 !important;">
<input type="text" placeholder="Password" class="bg-gray-200 mb-2 shadow-none dark:bg-gray-800" style="border: 1px solid #d3d5d8 !important;">
<input type="text" placeholder="Confirm Password" class="bg-gray-200 mb-2 shadow-none dark:bg-gray-800" style="border: 1px solid #d3d5d8 !important;">
<div class="flex justify-start my-4 space-x-1">
<div class="checkbox">
<input type="checkbox" id="chekcbox1" checked>
<label for="chekcbox1"><span class="checkbox-icon"></span> I Agree</label>
</div>
<a href="#"> Terms and Conditions</a>
</div>
<button type="submit" class="bg-gradient-to-br from-pink-500 py-3 rounded-md text-white text-xl to-red-400 w-full">Login</button>
<div class="text-center mt-5 space-x-2">
<p class="text-base"> Do you have an account? <a href="form-login.html"> Login </a></p>
</div>
</form>
</div>
</div>
<!-- Footer -->
<div class="lg:mb-5 py-3 uk-link-reset">
<div class="flex flex-col items-center justify-between lg:flex-row max-w-6xl mx-auto lg:space-y-0 space-y-3">
<div class="flex space-x-2 text-gray-700 uppercase">
<a href="#"> About</a>
<a href="#"> Help</a>
<a href="#"> Terms</a>
<a href="#"> Privacy</a>
</div>
<p class="capitalize"> © copyright 2020 by socol</p>
</div>
</div>
</div>
<!--<script>
(function (window, document, undefined) {
'use strict';
if (!('localStorage' in window)) return;
var nightMode = localStorage.getItem('gmtNightMode');
if (nightMode) {
document.documentElement.className += ' dark';
}
})(window, document);
(function (window, document, undefined) {
'use strict';
// Feature test
if (!('localStorage' in window)) return;
// Get our newly insert toggle
var nightMode = document.querySelector('#night-mode');
if (!nightMode) return;
// When clicked, toggle night mode on or off
nightMode.addEventListener('click', function (event) {
event.preventDefault();
document.documentElement.classList.toggle('dark');
if (document.documentElement.classList.contains('dark')) {
localStorage.setItem('gmtNightMode', true);
return;
}
localStorage.removeItem('gmtNightMode');
}, false);
})(window, document);
</script>-->
<!-- Scripts
================================================== -->
<script src="{% static 'assets/js/tippy.all.min.js' %}"></script>
<script src="{% static 'assets/js/jquery-3.3.1.min.js' %}"></script>
<script src="{% static 'assets/js/uikit.js' %}"></script>
<script src="{% static 'assets/js/simplebar.js' %}"></script>
<script src="{% static 'assets/js/custom.js' %}"></script>
</body>
</html>