forked from tomitokko/django-social-media-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setting.html
172 lines (144 loc) · 7.6 KB
/
setting.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
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
{% 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>Settings</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>
<div class="container m-auto">
<h1 class="text-2xl leading-none text-gray-900 tracking-tight mt-3"> Account Setting </h1>
<ul class="mt-5 -mr-3 flex-nowrap lg:overflow-hidden overflow-x-scroll uk-tab">
<li class="uk-active"><a href="#">General</a></li>
<li><a href="#">Profile</a></li>
<li><a href="#">Privacy</a></li>
<li><a href="#">Notification</a></li>
<li><a href="#">Social links</a></li>
<li><a href="#">Billing</a></li>
<li><a href="#">Security</a></li>
</ul>
<div class="grid lg:grid-cols-3 mt-12 gap-8">
<div>
<h3 class="text-xl mb-2"> Basic</h3>
<p></p>
</div>
<div class="bg-white rounded-md lg:shadow-lg shadow col-span-2">
<div class="grid grid-cols-2 gap-3 lg:p-6 p-4">
<div>
<label for=""> First name</label>
<input type="text" placeholder="Your name.." class="shadow-none bg-gray-100">
</div>
<div>
<label for=""> Last name</label>
<input type="text" placeholder="Your name.." class="shadow-none bg-gray-100">
</div>
<div class="col-span-2">
<label for=""> Email</label>
<input type="text" placeholder="Your name.." class="shadow-none bg-gray-100">
</div>
<div class="col-span-2">
<label for="about">About me</label>
<textarea id="about" name="about" rows="3" class="shadow-none bg-gray-100"></textarea>
</div>
<div class="col-span-2">
<label for=""> Location</label>
<input type="text" placeholder="" class="shadow-none bg-gray-100">
</div>
<div>
<label for=""> Working at</label>
<input type="text" placeholder="" class="shadow-none bg-gray-100">
</div>
<div>
<label for=""> Relationship </label>
<select id="relationship" name="relationship" class="shadow-none bg-gray-100">
<option value="0">None</option>
<option value="1">Single</option>
<option value="2">In a relationship</option>
<option value="3">Married</option>
<option value="4">Engaged</option>
</select>
</div>
</div>
<div class="bg-gray-10 p-6 pt-0 flex justify-end space-x-3">
<button class="p-2 px-4 rounded bg-gray-50 text-red-500"> Cancel </button>
<button type="button" class="button bg-blue-700"> Save </button>
</div>
</div>
<div>
<h3 class="text-xl mb-2"> Privacy</h3>
<p> </p>
</div>
<div class="bg-white rounded-md lg:shadow-lg shadow lg:p-6 p-4 col-span-2">
<div class="space-y-3">
<div class="flex justify-between items-center">
<div>
<h4> Who can follow me ?</h4>
<div> </div>
</div>
<div class="switches-list -mt-8 is-large">
<div class="switch-container">
<label class="switch"><input type="checkbox"><span class="switch-button"></span> </label>
</div>
</div>
</div>
<hr>
<div class="flex justify-between items-center">
<div>
<h4> Show my activities ?</h4>
<div> </div>
</div>
<div class="switches-list -mt-8 is-large">
<div class="switch-container">
<label class="switch"><input type="checkbox" checked><span class="switch-button"></span> </label>
</div>
</div>
</div>
<hr>
<div class="flex justify-between items-center">
<div>
<h4> Search engines?</h4>
<div> </div>
</div>
<div class="switches-list -mt-8 is-large">
<div class="switch-container">
<label class="switch"><input type="checkbox"><span class="switch-button"></span> </label>
</div>
</div>
</div>
<hr>
<div class="flex justify-between items-center">
<div>
<h4> Allow Commenting?</h4>
<div> </div>
</div>
<div class="switches-list -mt-8 is-large">
<div class="switch-container">
<label class="switch"><input type="checkbox"><span class="switch-button"></span> </label>
</div>
</div>
</div>
</div>
</div>
<br>
</div>
</div>
</div>
</div>
<!-- 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>
<script src="{% static '../../unpkg.com/ionicons%405.2.3/dist/ionicons.js' %}"></script>
</body>
</html>