Move css and img to assets dir

This commit is contained in:
Victor LABORIE 2018-09-17 17:58:30 +02:00
parent 263f72a48a
commit 0b894d33b8
7 changed files with 5 additions and 5 deletions

View File

Before

Width:  |  Height:  |  Size: 1.1 KiB

After

Width:  |  Height:  |  Size: 1.1 KiB

View File

Before

Width:  |  Height:  |  Size: 9.6 KiB

After

Width:  |  Height:  |  Size: 9.6 KiB

View File

@ -33,7 +33,7 @@ if (!empty($_POST['login'])) {
<div class="loginpage"> <div class="loginpage">
<div class="loginbox"> <div class="loginbox">
<div class="illustration"> <div class="illustration">
<img src="img/logo.png" class="img-responsive" alt="Responsive image"> <img src="assets/logo.png" class="img-responsive" alt="Responsive image">
</div> </div>
<form method="POST" action="auth.php" method="post" name="auth"> <form method="POST" action="auth.php" method="post" name="auth">
<div class="form-group has-feedback has-feedback-left"> <div class="form-group has-feedback has-feedback-left">

View File

@ -1 +1 @@
img/favicon.ico assets/favicon.ico

View File

@ -2,7 +2,7 @@
<div id="top" class="container"> <div id="top" class="container">
<div class="navbar-brand logo"> <div class="navbar-brand logo">
<a href="https://evolix.com/" target="_blank"> <a href="https://evolix.com/" target="_blank">
<img src="img/logo.png" alt="Evolix" class="img-responsive"/> <img src="assets/logo.png" alt="Evolix" class="img-responsive"/>
</a> </a>
</div> </div>
<ul class="nav navbar-nav"> <ul class="nav navbar-nav">

View File

@ -5,8 +5,8 @@
<meta name="robots" content="noindex,nofollow"/> <meta name="robots" content="noindex,nofollow"/>
<meta name="referrer" content="same-origin"/> <meta name="referrer" content="same-origin"/>
<title><?php print $config['global']['name']; ?></title> <title><?php print $config['global']['name']; ?></title>
<link rel="stylesheet" href="css/main.css" type="text/css"/> <link rel="stylesheet" href="assets/main.css" type="text/css"/>
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon"/> <link rel="shortcut icon" href="assets/favicon.ico" type="image/x-icon"/>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha256-916EbMg70RQy9LHiGkXzG8hSg9EdNy97GazNG/aiY1w=" crossorigin="anonymous"/> <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha256-916EbMg70RQy9LHiGkXzG8hSg9EdNy97GazNG/aiY1w=" crossorigin="anonymous"/>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/datatables/1.10.16/css/dataTables.bootstrap.min.css" integrity="sha256-PbaYLBab86/uCEz3diunGMEYvjah3uDFIiID+jAtIfw=" crossorigin="anonymous"/> <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/datatables/1.10.16/css/dataTables.bootstrap.min.css" integrity="sha256-PbaYLBab86/uCEz3diunGMEYvjah3uDFIiID+jAtIfw=" crossorigin="anonymous"/>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js" integrity="sha256-hwg4gsxgFZhOsEEamdOYGBf13FyQuiTwlAQgxVSNgt4=" crossorigin="anonymous"></script> <script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js" integrity="sha256-hwg4gsxgFZhOsEEamdOYGBf13FyQuiTwlAQgxVSNgt4=" crossorigin="anonymous"></script>