Commit realizando cambios en los roles de los usuarios
49
httpdocs/.htaccess
Normal file
@ -0,0 +1,49 @@
|
||||
# Disable directory browsing
|
||||
Options All -Indexes
|
||||
|
||||
# ----------------------------------------------------------------------
|
||||
# Rewrite engine
|
||||
# ----------------------------------------------------------------------
|
||||
|
||||
# Turning on the rewrite engine is necessary for the following rules and features.
|
||||
# FollowSymLinks must be enabled for this to work.
|
||||
<IfModule mod_rewrite.c>
|
||||
Options +FollowSymlinks
|
||||
RewriteEngine On
|
||||
|
||||
# If you installed CodeIgniter in a subfolder, you will need to
|
||||
# change the following line to match the subfolder you need.
|
||||
# http://httpd.apache.org/docs/current/mod/mod_rewrite.html#rewritebase
|
||||
# RewriteBase /
|
||||
|
||||
# Redirect Trailing Slashes...
|
||||
RewriteCond %{REQUEST_FILENAME} !-d
|
||||
RewriteCond %{REQUEST_URI} (.+)/$
|
||||
RewriteRule ^ %1 [L,R=301]
|
||||
|
||||
# Rewrite "www.example.com -> example.com"
|
||||
RewriteCond %{HTTPS} !=on
|
||||
RewriteCond %{HTTP_HOST} ^www\.(.+)$ [NC]
|
||||
RewriteRule ^ http://%1%{REQUEST_URI} [R=301,L]
|
||||
|
||||
# Checks to see if the user is attempting to access a valid file,
|
||||
# such as an image or css document, if this isn't true it sends the
|
||||
# request to the front controller, index.php
|
||||
RewriteCond %{REQUEST_FILENAME} !-f
|
||||
RewriteCond %{REQUEST_FILENAME} !-d
|
||||
RewriteRule ^([\s\S]*)$ index.php/$1 [L,NC,QSA]
|
||||
|
||||
# Ensure Authorization header is passed along
|
||||
RewriteCond %{HTTP:Authorization} .
|
||||
RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}]
|
||||
</IfModule>
|
||||
|
||||
<IfModule !mod_rewrite.c>
|
||||
# If we don't have mod_rewrite installed, all 404's
|
||||
# can be sent to index.php, and everything works as normal.
|
||||
ErrorDocument 404 index.php
|
||||
</IfModule>
|
||||
|
||||
# Disable server signature start
|
||||
ServerSignature Off
|
||||
# Disable server signature end
|
||||
11
httpdocs/assets/css/index.html
Normal file
@ -0,0 +1,11 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<title>403 Forbidden</title>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<p>Directory access is forbidden.</p>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
124
httpdocs/assets/css/install.css
Normal file
@ -0,0 +1,124 @@
|
||||
body{
|
||||
background-color: #BCBDBD;
|
||||
color: #4e5e6a;
|
||||
font-size: 15px !important;
|
||||
transition: 5s all;
|
||||
}
|
||||
.install-box {
|
||||
max-width: 900px;
|
||||
margin: 30px auto;
|
||||
}
|
||||
.card{
|
||||
border: 0;
|
||||
}
|
||||
.card-header h2{
|
||||
margin: 20px 0;
|
||||
}
|
||||
.card-install>.card-header{
|
||||
background-color: #343957;
|
||||
color: #fff;
|
||||
border-bottom: none;
|
||||
}
|
||||
.card-footer{
|
||||
border-top: none;
|
||||
}
|
||||
.icon{
|
||||
height: 16px;
|
||||
width: 16px;
|
||||
margin-top: -4px;
|
||||
}
|
||||
.status-icon{
|
||||
height: 18px;
|
||||
width: 18px;
|
||||
margin-top: -3px;
|
||||
}
|
||||
svg.feather.feather-check-circle.status-icon, .status{
|
||||
color: #6b51df;
|
||||
}
|
||||
svg.feather.feather-x-circle.status-icon{
|
||||
color: #d73b3b;
|
||||
}
|
||||
svg.status{
|
||||
margin-top: -3px;
|
||||
}
|
||||
table{
|
||||
width: 100%;
|
||||
}
|
||||
th, td{
|
||||
padding:5px 0;
|
||||
}
|
||||
.section{
|
||||
padding: 25px;
|
||||
background-color: #fff;
|
||||
margin-bottom: 15px;
|
||||
}
|
||||
.tab-content{
|
||||
margin-top: 20px;
|
||||
}
|
||||
hr{
|
||||
margin: 10px 0 0;
|
||||
}
|
||||
.tab-title{
|
||||
background: #f2f3f4;
|
||||
padding:15px;
|
||||
border-bottom: none;
|
||||
}
|
||||
.tab-title.active{
|
||||
background: #6b51df;
|
||||
color: #fff;
|
||||
}
|
||||
.form-group{
|
||||
margin-top: 15px;
|
||||
margin-bottom: 15px;
|
||||
}
|
||||
|
||||
.no-padding{
|
||||
padding: 0;
|
||||
}
|
||||
.btn-info{
|
||||
background-color: #6b51df;
|
||||
border: none;
|
||||
width: 100%;
|
||||
padding: 15px;
|
||||
}
|
||||
.btn-info:hover,
|
||||
.btn-info:focus,
|
||||
.btn-info:active
|
||||
{
|
||||
background-color: #6b51df !important;
|
||||
border: none !important;
|
||||
}
|
||||
.btn-info[disabled]{
|
||||
background-color: #6b51df !important;
|
||||
border: none !important;
|
||||
}
|
||||
label{
|
||||
font-weight: normal;
|
||||
}
|
||||
.alert{
|
||||
border-radius: 0;
|
||||
}
|
||||
.loader{
|
||||
background: url('../../themes/focus2/images/loader2.gif') no-repeat;
|
||||
height: 16px;
|
||||
display: inline-block;
|
||||
padding-left: 20px;
|
||||
line-height: 16px;
|
||||
}
|
||||
.go-to-login-page,
|
||||
.go-to-login-page:active,
|
||||
.go-to-login-page:focus{
|
||||
color: #6b51df;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
.go-to-login-page:hover{
|
||||
color: #6b51df;
|
||||
text-decoration: none;
|
||||
}
|
||||
.hide {
|
||||
display: none!important;
|
||||
}
|
||||
.mr10{
|
||||
margin-right: 10px;
|
||||
}
|
||||
BIN
httpdocs/assets/flags/ad_64.png
Normal file
|
After Width: | Height: | Size: 1.6 KiB |
BIN
httpdocs/assets/flags/ae_64.png
Normal file
|
After Width: | Height: | Size: 447 B |
BIN
httpdocs/assets/flags/af_64.png
Normal file
|
After Width: | Height: | Size: 1.6 KiB |
BIN
httpdocs/assets/flags/ag_64.png
Normal file
|
After Width: | Height: | Size: 2.4 KiB |
BIN
httpdocs/assets/flags/ai_64.png
Normal file
|
After Width: | Height: | Size: 2.4 KiB |
BIN
httpdocs/assets/flags/al_64.png
Normal file
|
After Width: | Height: | Size: 2.0 KiB |
BIN
httpdocs/assets/flags/am_64.png
Normal file
|
After Width: | Height: | Size: 272 B |
BIN
httpdocs/assets/flags/ao_64.png
Normal file
|
After Width: | Height: | Size: 1.4 KiB |
BIN
httpdocs/assets/flags/aq_64.png
Normal file
|
After Width: | Height: | Size: 1.7 KiB |
BIN
httpdocs/assets/flags/ar_64.png
Normal file
|
After Width: | Height: | Size: 734 B |
BIN
httpdocs/assets/flags/as_64.png
Normal file
|
After Width: | Height: | Size: 2.0 KiB |
BIN
httpdocs/assets/flags/at_64.png
Normal file
|
After Width: | Height: | Size: 321 B |
BIN
httpdocs/assets/flags/au_64.png
Normal file
|
After Width: | Height: | Size: 2.5 KiB |
BIN
httpdocs/assets/flags/aw_64.png
Normal file
|
After Width: | Height: | Size: 823 B |
BIN
httpdocs/assets/flags/ax_64.png
Normal file
|
After Width: | Height: | Size: 768 B |
BIN
httpdocs/assets/flags/az_64.png
Normal file
|
After Width: | Height: | Size: 746 B |
BIN
httpdocs/assets/flags/ba_64.png
Normal file
|
After Width: | Height: | Size: 903 B |
BIN
httpdocs/assets/flags/bb_64.png
Normal file
|
After Width: | Height: | Size: 1.2 KiB |
BIN
httpdocs/assets/flags/bd_64.png
Normal file
|
After Width: | Height: | Size: 1.2 KiB |
BIN
httpdocs/assets/flags/be_64.png
Normal file
|
After Width: | Height: | Size: 332 B |
BIN
httpdocs/assets/flags/bf_64.png
Normal file
|
After Width: | Height: | Size: 829 B |
BIN
httpdocs/assets/flags/bg_64.png
Normal file
|
After Width: | Height: | Size: 273 B |
BIN
httpdocs/assets/flags/bh_64.png
Normal file
|
After Width: | Height: | Size: 1020 B |
BIN
httpdocs/assets/flags/bi_64.png
Normal file
|
After Width: | Height: | Size: 2.5 KiB |
BIN
httpdocs/assets/flags/bj_64.png
Normal file
|
After Width: | Height: | Size: 356 B |
BIN
httpdocs/assets/flags/bl_64.png
Normal file
|
After Width: | Height: | Size: 4.9 KiB |
BIN
httpdocs/assets/flags/bm_64.png
Normal file
|
After Width: | Height: | Size: 2.7 KiB |
BIN
httpdocs/assets/flags/bn_64.png
Normal file
|
After Width: | Height: | Size: 2.2 KiB |
BIN
httpdocs/assets/flags/bo_64.png
Normal file
|
After Width: | Height: | Size: 955 B |
BIN
httpdocs/assets/flags/bq_64.png
Normal file
|
After Width: | Height: | Size: 2.3 KiB |
BIN
httpdocs/assets/flags/br_32_circle.png
Normal file
|
After Width: | Height: | Size: 2.2 KiB |
BIN
httpdocs/assets/flags/br_64.png
Normal file
|
After Width: | Height: | Size: 2.9 KiB |
BIN
httpdocs/assets/flags/bs_64.png
Normal file
|
After Width: | Height: | Size: 708 B |
BIN
httpdocs/assets/flags/bt_64.png
Normal file
|
After Width: | Height: | Size: 3.3 KiB |
BIN
httpdocs/assets/flags/bv_64.png
Normal file
|
After Width: | Height: | Size: 707 B |
BIN
httpdocs/assets/flags/bw_64.png
Normal file
|
After Width: | Height: | Size: 329 B |
BIN
httpdocs/assets/flags/by_64.png
Normal file
|
After Width: | Height: | Size: 1.2 KiB |
BIN
httpdocs/assets/flags/bz_64.png
Normal file
|
After Width: | Height: | Size: 3.8 KiB |
BIN
httpdocs/assets/flags/ca_64.png
Normal file
|
After Width: | Height: | Size: 773 B |
BIN
httpdocs/assets/flags/cc_64.png
Normal file
|
After Width: | Height: | Size: 1.7 KiB |
BIN
httpdocs/assets/flags/cd_64.png
Normal file
|
After Width: | Height: | Size: 2.7 KiB |
BIN
httpdocs/assets/flags/cf_64.png
Normal file
|
After Width: | Height: | Size: 1.2 KiB |
BIN
httpdocs/assets/flags/cg_64.png
Normal file
|
After Width: | Height: | Size: 1.5 KiB |
BIN
httpdocs/assets/flags/ch_64.png
Normal file
|
After Width: | Height: | Size: 760 B |
BIN
httpdocs/assets/flags/ci_64.png
Normal file
|
After Width: | Height: | Size: 265 B |
BIN
httpdocs/assets/flags/ck_64.png
Normal file
|
After Width: | Height: | Size: 3.4 KiB |
BIN
httpdocs/assets/flags/cl_64.png
Normal file
|
After Width: | Height: | Size: 721 B |
BIN
httpdocs/assets/flags/cm_64.png
Normal file
|
After Width: | Height: | Size: 778 B |
BIN
httpdocs/assets/flags/cn_64.png
Normal file
|
After Width: | Height: | Size: 1.2 KiB |
BIN
httpdocs/assets/flags/co_64.png
Normal file
|
After Width: | Height: | Size: 363 B |
BIN
httpdocs/assets/flags/cr_64.png
Normal file
|
After Width: | Height: | Size: 804 B |
BIN
httpdocs/assets/flags/cu_64.png
Normal file
|
After Width: | Height: | Size: 1.3 KiB |
BIN
httpdocs/assets/flags/cv_64.png
Normal file
|
After Width: | Height: | Size: 1.3 KiB |
BIN
httpdocs/assets/flags/cw_64.png
Normal file
|
After Width: | Height: | Size: 954 B |
BIN
httpdocs/assets/flags/cx_64.png
Normal file
|
After Width: | Height: | Size: 2.5 KiB |
BIN
httpdocs/assets/flags/cy_64.png
Normal file
|
After Width: | Height: | Size: 1.5 KiB |
BIN
httpdocs/assets/flags/cz_64.png
Normal file
|
After Width: | Height: | Size: 1.3 KiB |
BIN
httpdocs/assets/flags/de_64.png
Normal file
|
After Width: | Height: | Size: 299 B |
BIN
httpdocs/assets/flags/dj_64.png
Normal file
|
After Width: | Height: | Size: 1.4 KiB |
BIN
httpdocs/assets/flags/dk_64.png
Normal file
|
After Width: | Height: | Size: 419 B |
BIN
httpdocs/assets/flags/dm_64.png
Normal file
|
After Width: | Height: | Size: 1.4 KiB |
BIN
httpdocs/assets/flags/do_64.png
Normal file
|
After Width: | Height: | Size: 671 B |
BIN
httpdocs/assets/flags/dz_64.png
Normal file
|
After Width: | Height: | Size: 1.3 KiB |
BIN
httpdocs/assets/flags/ec_64.png
Normal file
|
After Width: | Height: | Size: 1.8 KiB |
BIN
httpdocs/assets/flags/ee_64.png
Normal file
|
After Width: | Height: | Size: 301 B |
BIN
httpdocs/assets/flags/eg_64.png
Normal file
|
After Width: | Height: | Size: 804 B |
BIN
httpdocs/assets/flags/eh_64.png
Normal file
|
After Width: | Height: | Size: 1.1 KiB |
BIN
httpdocs/assets/flags/er_64.png
Normal file
|
After Width: | Height: | Size: 2.1 KiB |
BIN
httpdocs/assets/flags/es_32_circle.png
Normal file
|
After Width: | Height: | Size: 1.6 KiB |
BIN
httpdocs/assets/flags/es_64.png
Normal file
|
After Width: | Height: | Size: 1.3 KiB |
BIN
httpdocs/assets/flags/et_64.png
Normal file
|
After Width: | Height: | Size: 2.0 KiB |
BIN
httpdocs/assets/flags/fi_64.png
Normal file
|
After Width: | Height: | Size: 504 B |
BIN
httpdocs/assets/flags/fj_64.png
Normal file
|
After Width: | Height: | Size: 2.6 KiB |
BIN
httpdocs/assets/flags/fk_64.png
Normal file
|
After Width: | Height: | Size: 2.8 KiB |
BIN
httpdocs/assets/flags/fm_64.png
Normal file
|
After Width: | Height: | Size: 1.1 KiB |
BIN
httpdocs/assets/flags/fo_64.png
Normal file
|
After Width: | Height: | Size: 726 B |
BIN
httpdocs/assets/flags/fr_64.png
Normal file
|
After Width: | Height: | Size: 318 B |
BIN
httpdocs/assets/flags/ga_64.png
Normal file
|
After Width: | Height: | Size: 325 B |
BIN
httpdocs/assets/flags/gb_64.png
Normal file
|
After Width: | Height: | Size: 2.9 KiB |
BIN
httpdocs/assets/flags/gd_64.png
Normal file
|
After Width: | Height: | Size: 3.0 KiB |
BIN
httpdocs/assets/flags/ge_64.png
Normal file
|
After Width: | Height: | Size: 1.1 KiB |
BIN
httpdocs/assets/flags/gf_64.png
Normal file
|
After Width: | Height: | Size: 318 B |
BIN
httpdocs/assets/flags/gg_64.png
Normal file
|
After Width: | Height: | Size: 1.1 KiB |
BIN
httpdocs/assets/flags/gh_64.png
Normal file
|
After Width: | Height: | Size: 920 B |
BIN
httpdocs/assets/flags/gi_64.png
Normal file
|
After Width: | Height: | Size: 1.4 KiB |
BIN
httpdocs/assets/flags/gl_64.png
Normal file
|
After Width: | Height: | Size: 1.3 KiB |
BIN
httpdocs/assets/flags/gm_64.png
Normal file
|
After Width: | Height: | Size: 397 B |
BIN
httpdocs/assets/flags/gn_64.png
Normal file
|
After Width: | Height: | Size: 356 B |
BIN
httpdocs/assets/flags/gp_64.png
Normal file
|
After Width: | Height: | Size: 737 B |
BIN
httpdocs/assets/flags/gq_64.png
Normal file
|
After Width: | Height: | Size: 1.5 KiB |
BIN
httpdocs/assets/flags/gr_64.png
Normal file
|
After Width: | Height: | Size: 712 B |
BIN
httpdocs/assets/flags/gs_64.png
Normal file
|
After Width: | Height: | Size: 3.0 KiB |
BIN
httpdocs/assets/flags/gt_64.png
Normal file
|
After Width: | Height: | Size: 944 B |
BIN
httpdocs/assets/flags/gu_64.png
Normal file
|
After Width: | Height: | Size: 1.2 KiB |
BIN
httpdocs/assets/flags/gw_64.png
Normal file
|
After Width: | Height: | Size: 750 B |
BIN
httpdocs/assets/flags/gy_64.png
Normal file
|
After Width: | Height: | Size: 2.2 KiB |
BIN
httpdocs/assets/flags/hk_64.png
Normal file
|
After Width: | Height: | Size: 1.8 KiB |