diff --git a/README.md b/README.md index 654a6a1..f847f9f 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ `#php` `#server` `#master-in-software-development` -# PHP Server Environment +# PHP Server Environment

Version @@ -11,9 +11,7 @@ ## Index - [Requirements](#requirements) -- [Repository](#repository) - [Technologies used](#technologies-used) -- [Project delivery](#project-delivery) - [Resources](#resources) ## Requirements @@ -21,23 +19,10 @@ - Learn how to use the $_SERVER - Understand what a server-side language is and what it is used for -## Repository - -First of all you must fork this project into your GitHub account. - -To create a fork on GitHub is as easy as clicking the “fork” button on the repository page. - -Fork on GitHub - ## Technologies used \* PHP -## Project delivery - -To deliver this project you must send a Pull Request as explained in the Students Handbook. Remember that the PR title must be with the format -- Solution: + NAME AND SURNAME or TEAM NAMES AND SURNAMES. -- For example: "Solution: Josep Riera", "Solution: Josep Riera, Toni Suárez, Marta Vázquez" ## Resources diff --git a/assets/5minRelaxMusic.mp3 b/assets/5minRelaxMusic.mp3 new file mode 100644 index 0000000..d9852e5 Binary files /dev/null and b/assets/5minRelaxMusic.mp3 differ diff --git a/assets/Oriental Japanese Dojo.jpg b/assets/Oriental Japanese Dojo.jpg new file mode 100644 index 0000000..0f524ae Binary files /dev/null and b/assets/Oriental Japanese Dojo.jpg differ diff --git a/assets/door.jpg b/assets/door.jpg new file mode 100644 index 0000000..e126526 Binary files /dev/null and b/assets/door.jpg differ diff --git a/assets/tori.jpg b/assets/tori.jpg new file mode 100644 index 0000000..3c77c22 Binary files /dev/null and b/assets/tori.jpg differ diff --git a/close_session.php b/close_session.php new file mode 100644 index 0000000..5a9fa35 --- /dev/null +++ b/close_session.php @@ -0,0 +1,9 @@ + + + + diff --git a/exercises/phpinfo.php b/exercises/phpinfo.php new file mode 100644 index 0000000..968c8df --- /dev/null +++ b/exercises/phpinfo.php @@ -0,0 +1,3 @@ + \ No newline at end of file diff --git a/exercises/server_variables.php b/exercises/server_variables.php new file mode 100644 index 0000000..2426bf7 --- /dev/null +++ b/exercises/server_variables.php @@ -0,0 +1,5 @@ + \ No newline at end of file diff --git a/exercises/session_variables.php b/exercises/session_variables.php new file mode 100644 index 0000000..0ae5c95 --- /dev/null +++ b/exercises/session_variables.php @@ -0,0 +1,11 @@ + \ No newline at end of file diff --git a/index.php b/index.php new file mode 100644 index 0000000..6f4a448 --- /dev/null +++ b/index.php @@ -0,0 +1,32 @@ + + + + + + + Login + + + +

+
+ + +Invalid username or password
"; +} +?> + + +
+ + + + \ No newline at end of file diff --git a/panel.php b/panel.php new file mode 100644 index 0000000..d9906e0 --- /dev/null +++ b/panel.php @@ -0,0 +1,31 @@ + + + + + + + + + + + Document + + + +
+ +
+
+

BIENVENIDO

+

Tómate 5 minutos para descansar

+
+ + + \ No newline at end of file diff --git a/style.css b/style.css new file mode 100644 index 0000000..22d2dab --- /dev/null +++ b/style.css @@ -0,0 +1,79 @@ +* { + margin: 0; + padding: 0; + box-sizing: border-box; +} + + +.initialPage { + background-image: url(assets/door.jpg); + background-repeat: no-repeat; + background-size: cover; + display: flex; + justify-content: center; + align-items: center; + height: 100vh; +} + +.invalid { + color: red; + font-size: 18px; + display:flex; + flex-direction: column; + align-items: center; +} + +.login { + display:flex; + flex-direction: column; + align-items: center; +} + +.btnSubmit { + width: 6em; + margin: 2em; + border-radius: 20px; +} + +label { + color: yellow; + display: flex; + flex-direction: column; + justify-content: space-between; +} + +.welcome { + color:yellow; + display:flex; + flex-direction:column; + align-items: center; + margin-top: 4em; + font-size: 20px; +} + +.control { + /* height: 100vh; */ + position: absolute; + bottom: 0; + opacity: 0.1; +} + +.control:hover { + opacity: 1; + transition: 3s; +} + +.tori { + background-image: url(assets/tori.jpg); + background-repeat: no-repeat; + background-size: cover; + height: 100vh; +} + +.logout { + display: flex; + justify-content: end; + width: 100%; + border-radius: 20px; +} + diff --git a/validate.php b/validate.php new file mode 100644 index 0000000..7069a1f --- /dev/null +++ b/validate.php @@ -0,0 +1,15 @@ + \ No newline at end of file