-
Notifications
You must be signed in to change notification settings - Fork 0
/
language.html
166 lines (141 loc) · 7.07 KB
/
language.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
<!doctype html>
<html lang="en" class="h-100">
<!-- Mirrored from maxartkiller.com/website/NGT App Demo/HTML/language.html by HTTrack Website Copier/3.x [XR&CO'2014], Sat, 29 Oct 2022 11:21:43 GMT -->
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="description" content="">
<meta name="author" content="">
<meta name="generator" content="">
<title>Your Organization Name</title>
<!-- manifest meta -->
<meta name="apple-mobile-web-app-capable" content="yes">
<!-- Favicons -->
<link rel="apple-touch-icon" href="img/favicon180.png" sizes="180x180">
<link rel="icon" href="img/favicon32.png" sizes="32x32" type="image/png">
<link rel="icon" href="img/favicon16.png" sizes="16x16" type="image/png">
<!-- Material icons-->
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<!-- Google fonts-->
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500&display=swap" rel="stylesheet">
<!-- swiper CSS -->
<link href="vendor/swiper/css/swiper.min.css" rel="stylesheet">
<!-- Custom styles for this template -->
<link href="css/style.css" rel="stylesheet" id="style">
</head>
<body class="body-scroll d-flex flex-column h-100 menu-overlay">
<!-- screen loader -->
<div class="container-fluid h-100 loader-display">
<div class="row h-100">
<div class="align-self-center col">
<div class="logo-loading">
<div class="icon icon-100 mb-4 rounded-circle">
<img src="img/favicon144.png" alt="" class="w-100">
</div>
<h4 class="text-default">Your Company Demo</h4>
<p class="text-secondary">Mobile HTML template</p>
<div class="loader-ellipsis">
<div></div>
<div></div>
<div></div>
<div></div>
</div>
</div>
</div>
</div>
</div>
<!-- Begin page content -->
<main class="flex-shrink-0 main">
<!-- Fixed navbar -->
<header class="header">
<div class="row">
<div class="col-auto px-0">
<button class="btn btn-40 btn-link back-btn" type="button">
<span class="material-icons">keyboard_arrow_left</span>
</button>
</div>
<div class="text-left col align-self-center">
<a class="navbar-brand" href="#">
<h5 class="mb-0">Language</h5>
</a>
</div>
<div class="ml-auto col-auto">
<a href="profile.html" class="avatar avatar-30 shadow-sm rounded-circle ml-2">
<figure class="m-0 background">
<img src="img/user1.png" alt="">
</figure>
</a>
</div>
</div>
</header>
<!-- page content start -->
<div class="main-container">
<div class="container">
<div class="card">
<div class="card-header border-bottom">
<div class="row">
<div class="col-auto">
<div class="avatar avatar-50 bg-default-light text-default rounded">
<span class="material-icons">language</span>
</div>
</div>
<div class="col align-self-center pl-0">
<h6 class="mb-1">Choose Language</h6>
<p class="text-secondary">Select preffered language</p>
</div>
</div>
</div>
<div class="card-body pt-0 px-0">
<ul class="list-group list-group-flush">
<li class="list-group-item">
<div class="custom-control custom-switch">
<input type="radio" name="language" class="custom-control-input" id="customSwitch1" checked>
<label class="custom-control-label" for="customSwitch1">English</label>
</div>
</li>
<li class="list-group-item">
<div class="custom-control custom-switch">
<input type="radio" name="language" class="custom-control-input" id="customSwitch2">
<label class="custom-control-label" for="customSwitch2">Spanish</label>
</div>
</li>
<li class="list-group-item">
<div class="custom-control custom-switch">
<input type="radio" name="language" class="custom-control-input" id="customSwitch3">
<label class="custom-control-label" for="customSwitch3">French</label>
</div>
</li>
<li class="list-group-item">
<div class="custom-control custom-switch">
<input type="radio" name="language" class="custom-control-input" id="customSwitch4">
<label class="custom-control-label" for="customSwitch4">Arabi</label>
</div>
</li>
<li class="list-group-item">
<div class="custom-control custom-switch">
<input type="radio" name="language" class="custom-control-input" id="customSwitch5">
<label class="custom-control-label" for="customSwitch5">Hindi</label>
</div>
</li>
</ul>
</div>
</div>
</div>
</div>
</main>
<!-- Required jquery and libraries -->
<script src="js/jquery-3.3.1.min.js"></script>
<script src="js/popper.min.js"></script>
<script src="vendor/bootstrap/js/bootstrap.min.js"></script>
<!-- cookie js -->
<script src="js/jquery.cookie.js"></script>
<!-- Swiper slider js-->
<script src="vendor/swiper/js/swiper.min.js"></script>
<!-- Customized jquery file -->
<script src="js/main.js"></script>
<script src="js/color-scheme-demo.js"></script>
<!-- page level custom script -->
<script src="js/app.js"></script>
</body>
<!-- Mirrored from maxartkiller.com/website/NGT App Demo/HTML/language.html by HTTrack Website Copier/3.x [XR&CO'2014], Sat, 29 Oct 2022 11:21:43 GMT -->
</html>