1
0
mirror of https://github.com/robonen/metr.git synced 2026-03-20 02:44:42 +00:00

Added js + redacted php

This commit is contained in:
Konstantin Vinokurov
2022-04-29 15:33:18 +07:00
parent f0fa19d3cd
commit bafe213bd9
8 changed files with 26 additions and 0 deletions

0
public/js/login.js Normal file
View File

12
public/js/main_page.js Normal file
View File

@@ -0,0 +1,12 @@
console.log("Test");
document.getElementById('user').onclick = function() {
window.location.href = 'signin.html';
};
document.getElementById('catalog').onclick = function() {
window.location.href = 'signin.html';
};

0
public/js/signin.js Normal file
View File

0
resources/js/login.js Normal file
View File

12
resources/js/main_page.js Normal file
View File

@@ -0,0 +1,12 @@
console.log("Test");
document.getElementById('user').onclick = function() {
window.location.href = 'signin.html';
};
document.getElementById('catalog').onclick = function() {
window.location.href = 'signin.html';
};

0
resources/js/signin.js Normal file
View File

View File

@@ -23,4 +23,5 @@
</div> </div>
</form> </form>
</div> </div>
<script src="public/js/login.js"></script>
@endsection @endsection

View File

@@ -166,4 +166,5 @@
</div> </div>
</div> </div>
</footer> </footer>
<script src="public/js/main_page.js"></script>
@endsection @endsection