Skip to content

Commit

Permalink
Merge pull request #20 from secultce/feature/login-page
Browse files Browse the repository at this point in the history
Create new login page
  • Loading branch information
alessandrofeitoza authored Aug 18, 2024
2 parents 724b4e3 + f486c58 commit 8a990e2
Show file tree
Hide file tree
Showing 26 changed files with 1,461 additions and 89 deletions.
10 changes: 10 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -20,3 +20,13 @@
/phpunit.xml
.phpunit.result.cache
###< phpunit/phpunit ###

###> symfony/asset-mapper ###
/public/assets/
/assets/vendor/
###< symfony/asset-mapper ###

###> symfony/phpunit-bridge ###
.phpunit.result.cache
/phpunit.xml
###< symfony/phpunit-bridge ###
11 changes: 11 additions & 0 deletions assets/app.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
/*
* Welcome to your app's main JavaScript file!
*
* This file will be included onto the page via the importmap() Twig function,
* which should already be in your base.html.twig.
*/
import './vendor/mapaculturaldesign/dist/css/bootstrap.min.css';
import './styles/custom.css';
import './styles/app.css';

console.log('This log comes from assets/app.js - welcome to AssetMapper! 🎉');
Binary file added assets/img/logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
5 changes: 5 additions & 0 deletions assets/styles/app.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
@import "colors.css";

body {
background-color: var(--bg-color);
}
3 changes: 3 additions & 0 deletions assets/styles/colors.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
:root {
--bg-color: #EFEFEF;
}
Loading

0 comments on commit 8a990e2

Please sign in to comment.