Обновление панели

This commit is contained in:
JonnyBro 2021-12-11 01:36:10 +05:00
parent 31b3241ade
commit 576546c50b
6 changed files with 102 additions and 112 deletions

View file

@ -1,27 +1,24 @@
<!DOCTYPE html> <!DOCTYPE html>
<html> <html>
<%- include('includes/head') %> <%- include('includes/head') %>
<body class="hold-transition skin-red sidebar-mini">
<div class="wrapper">
<body class="hold-transition skin-red sidebar-mini"> <!-- The header is the topbar -->
<%- include('includes/header') %>
<div class="wrapper"> <!-- The sidebar includes the menu -->
<%- include('includes/sidebar') %>
<!-- The header is the topbar --> <!-- Content Wrapper. Contains page content -->
<%- include('includes/header') %> <div class="content-wrapper">
<!-- The sidebar includes the menu --> <!-- Content Header (Page header) -->
<%- include('includes/sidebar') %> <section class="content-header">
<h1>
<!-- Content Wrapper. Contains page content --> 404 Error Page
<div class="content-wrapper"> </h1>
</section>
<!-- Content Header (Page header) -->
<section class="content-header">
<h1>
404 Error Page
</h1>
</section>
<!-- Main content --> <!-- Main content -->
<section class="content"> <section class="content">
@ -55,9 +52,8 @@
</div> </div>
<!-- /.content-wrapper --> <!-- /.content-wrapper -->
<%- include('includes/footer') -%> <%- include('includes/footer') -%>
</div> </div>
<!-- ./wrapper --> <!-- ./wrapper -->
</body> </body>
</html> </html>

View file

@ -1,27 +1,23 @@
<!DOCTYPE html> <!DOCTYPE html>
<html> <html>
<%- include('includes/head') %> <%- include('includes/head') %>
<body class="hold-transition skin-red sidebar-mini">
<div class="wrapper">
<!-- The header is the topbar -->
<%- include('includes/header') %>
<body class="hold-transition skin-red sidebar-mini"> <!-- The sidebar includes the menu -->
<%- include('includes/sidebar') %>
<div class="wrapper"> <!-- Content Wrapper. Contains page content -->
<div class="content-wrapper">
<!-- The header is the topbar --> <!-- Content Header (Page header) -->
<%- include('includes/header') %> <section class="content-header">
<h1>
<!-- The sidebar includes the menu --> 500 Error Page
<%- include('includes/sidebar') %> </h1>
</section>
<!-- Content Wrapper. Contains page content -->
<div class="content-wrapper">
<!-- Content Header (Page header) -->
<section class="content-header">
<h1>
500 Error Page
</h1>
</section>
<!-- Main content --> <!-- Main content -->
<section class="content"> <section class="content">
@ -55,9 +51,8 @@
</div> </div>
<!-- /.content-wrapper --> <!-- /.content-wrapper -->
<%- include('includes/footer') -%> <%- include('includes/footer') -%>
</div> </div>
<!-- ./wrapper --> <!-- ./wrapper -->
</body> </body>
</html> </html>

View file

@ -1,10 +1,7 @@
<!DOCTYPE html> <!DOCTYPE html>
<html> <html>
<%- include('includes/head') %> <%- include('includes/head') %>
<body class="hold-transition skin-red sidebar-mini"> <body class="hold-transition skin-red sidebar-mini">
<div class="wrapper"> <div class="wrapper">
<!-- The header is the topbar --> <!-- The header is the topbar -->

View file

@ -1,10 +1,10 @@
<!DOCTYPE html> <!DOCTYPE html>
<html> <html>
<%- include('includes/head') %> <%- include('includes/head') %>
<!-- bootstrap datepicker --> <!-- bootstrap datepicker -->
<link rel="stylesheet" href="/bower_components/bootstrap-datepicker/dist/css/bootstrap-datepicker.min.css"> <link rel="stylesheet" href="/bower_components/bootstrap-datepicker/dist/css/bootstrap-datepicker.min.css">
<body class="hold-transition skin-red sidebar-mini"> <body class="hold-transition skin-red sidebar-mini">
@ -25,68 +25,73 @@
</section> </section>
<!-- Main content --> <!-- Main content -->
<section class="content"> <section class="content">
<!-- Info boxes --> <!-- Info boxes -->
<div class="row"> <div class="row">
<div class="col-md-12"> <div class="col-md-12">
<!-- general form elements --> <!-- general form elements -->
<div class="box box-primary"> <div class="box box-primary">
<div class="box-header with-border"> <div class="box-header with-border">
<h3 class="box-title"><%= translate("economy/profile:YOUR_PROFILE") %></h3> <h3 class="box-title"><%= translate("economy/profile:YOUR_PROFILE") %></h3>
</div> </div>
<!-- /.box-header --> <!-- /.box-header -->
<!-- form start --> <!-- form start -->
<form role="form" action="/settings" method="POST"> <form role="form" action="/settings" method="POST">
<div class="box-body"> <div class="box-body">
<div class="row"> <div class="row">
<div class="col-md-6"> <div class="col-md-6">
<div class="form-group"> <div class="form-group">
<label><%= translate("economy/profile:BIO") %></label> <label><%= translate("economy/profile:BIO") %></label>
<input name="bio" class="form-control" placeholder="<%= user.bio || translate("economy/profile:NO_BIO") %>"> <input name="bio" class="form-control" placeholder="<%= user.bio || translate("economy/profile:NO_BIO") %>">
</div> </div>
<div class="form-group"> <div class="form-group">
<label><%= translate("economy/profile:BIRTHDATE") %></label> <label><%= translate("economy/profile:BIRTHDATE") %></label>
<div class="input-group date"> <div class="input-group date">
<div class="input-group-addon"> <div class="input-group-addon">
<i class="fa fa-calendar"></i> <i class="fa fa-calendar"></i>
</div> </div>
<input type="text" name="birthdate" class="form-control pull-right" id="datepicker" placeholder="<%= printDate(new Date(user.birthdate)) %>"> <input type="text" name="birthdate" class="form-control pull-right" id="datepicker" placeholder="<%= printDate(new Date(user.birthdate)) %>">
</div> </div>
<!-- /.input group --> <!-- /.input group -->
</div> </div>
<!-- /.form group --> <!-- /.form group -->
</div> </div>
</div> </div>
</div> </div>
<!-- /.box-body --> <!-- /.box-body -->
<div class="box-footer"> <div class="box-footer">
<button type="submit" class="btn btn-primary"><%= translate("common:UPDATE") %></button> <button type="submit" class="btn btn-primary"><%= translate("common:UPDATE") %></button>
</div> </div>
</form> </form>
</div> </div>
<!-- /.box --> <!-- /.box -->
</div> </div>
<!-- ./col --> <!-- ./col -->
</div> </div>
<!-- /.row --> <!-- /.row -->
</section> </section>
<!-- /.content --> <!-- /.content -->
</div> </div>
<!-- /.content-wrapper --> <!-- /.content-wrapper -->
<%- include('includes/footer') %> <%- include('includes/footer') %>
</div> </div>
<!-- ./wrapper --> <!-- ./wrapper -->
<!-- bootstrap datepicker --> <!-- bootstrap datepicker -->
<script src="/bower_components/bootstrap-datepicker/dist/js/bootstrap-datepicker.min.js"></script> <script src="/bower_components/bootstrap-datepicker/dist/js/bootstrap-datepicker.min.js"></script>
<!-- ChartJS --> <!-- ChartJS -->
<script src="/bower_components/chart.js/Chart.js"></script> <script src="/bower_components/chart.js/Chart.js"></script>
<script> <script>
$(function(){ $(function(){
$("#datepicker").datepicker({ $("#datepicker").datepicker({
autoclose: true language: "ru",
}); title: "Выбор даты",
}); format: 'dd/mm/yyyy',
</script> clearBtn: true,
autoclose: true,
zIndexOffset: 5
});
});
</script>
</body> </body>
</html> </html>

View file

@ -1,10 +1,7 @@
<!DOCTYPE html> <!DOCTYPE html>
<html> <html>
<%- include('includes/head') %> <%- include('includes/head') %>
<body class="hold-transition skin-red sidebar-mini"> <body class="hold-transition skin-red sidebar-mini">
<div class="wrapper"> <div class="wrapper">
<!-- The header is the topbar --> <!-- The header is the topbar -->

View file

@ -16,7 +16,7 @@
"USERNAME": "Имя пользователя", "USERNAME": "Имя пользователя",
"DISCRIMINATOR": "Тег", "DISCRIMINATOR": "Тег",
"STATS": "Статистика", "STATS": "Статистика",
"ROBOT": "Робот", "ROBOT": "Бот",
"AVATAR": "Аватар", "AVATAR": "Аватар",
"GAME": "Игра", "GAME": "Игра",
"STATUS": "Статус", "STATUS": "Статус",