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

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>
<html>
<%- 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 -->
<%- include('includes/header') %>
<!-- Content Wrapper. Contains page content -->
<div class="content-wrapper">
<!-- The sidebar includes the menu -->
<%- include('includes/sidebar') %>
<!-- Content Wrapper. Contains page content -->
<div class="content-wrapper">
<!-- Content Header (Page header) -->
<section class="content-header">
<h1>
404 Error Page
</h1>
</section>
<!-- Content Header (Page header) -->
<section class="content-header">
<h1>
404 Error Page
</h1>
</section>
<!-- Main content -->
<section class="content">
@ -55,9 +52,8 @@
</div>
<!-- /.content-wrapper -->
<%- include('includes/footer') -%>
<%- include('includes/footer') -%>
</div>
<!-- ./wrapper -->
</body>
</html>
</html>

View file

@ -1,27 +1,23 @@
<!DOCTYPE html>
<html>
<%- 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 -->
<%- include('includes/header') %>
<!-- The sidebar includes the menu -->
<%- include('includes/sidebar') %>
<!-- Content Wrapper. Contains page content -->
<div class="content-wrapper">
<!-- Content Header (Page header) -->
<section class="content-header">
<h1>
500 Error Page
</h1>
</section>
<!-- Content Header (Page header) -->
<section class="content-header">
<h1>
500 Error Page
</h1>
</section>
<!-- Main content -->
<section class="content">
@ -55,9 +51,8 @@
</div>
<!-- /.content-wrapper -->
<%- include('includes/footer') -%>
<%- include('includes/footer') -%>
</div>
<!-- ./wrapper -->
</body>
</html>
</html>

View file

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

View file

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

View file

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

View file

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