diff --git a/assets/assembler.png b/assets/assembler.png new file mode 100644 index 0000000..a1742e4 Binary files /dev/null and b/assets/assembler.png differ diff --git a/assets/white.jpg b/assets/white.jpg new file mode 100644 index 0000000..bc9a598 Binary files /dev/null and b/assets/white.jpg differ diff --git a/close_session.php b/close_session.php new file mode 100644 index 0000000..bfbb92c --- /dev/null +++ b/close_session.php @@ -0,0 +1,15 @@ +location.href='index.php'"; +}else{ + + echo ""; +} + +?> \ No newline at end of file diff --git a/colors.js b/colors.js new file mode 100644 index 0000000..756815b --- /dev/null +++ b/colors.js @@ -0,0 +1,9 @@ +document.querySelector('.border').onmousemove = (e) => { + + const x = e.pageX - e.target.offsetLeft + const y = e.pageY - e.target.offsetTop + + e.target.style.setProperty('--x', `${ x }px`) + e.target.style.setProperty('--y', `${ y }px`) + +} \ No newline at end of file diff --git a/index.php b/index.php new file mode 100644 index 0000000..7375cb4 --- /dev/null +++ b/index.php @@ -0,0 +1,48 @@ + + + + + + + + + Document + + + + + +
+
+ +
+ + +
+ +
+ +
+ +
+ + +
+ +
+ + + + + + \ No newline at end of file diff --git a/panel.php b/panel.php new file mode 100644 index 0000000..1155ea2 --- /dev/null +++ b/panel.php @@ -0,0 +1,55 @@ +Welcome ".$_SESSION["user"].""; +} +?> + + + + + + + + Assembler + + + + + + + +
+ +
+
+

Profile

+

Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.

+

Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.

+ logo +

Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.

+ +

Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.

+
+
+
+
+

Copyright © 2022 | By Ynohe

+ +
+ + + +"; +}; + +?> \ No newline at end of file diff --git a/phpinfo.php b/phpinfo.php new file mode 100644 index 0000000..6480abf --- /dev/null +++ b/phpinfo.php @@ -0,0 +1,5 @@ + \ No newline at end of file diff --git a/server_variables.php b/server_variables.php new file mode 100644 index 0000000..fd97500 --- /dev/null +++ b/server_variables.php @@ -0,0 +1,9 @@ +"; + +print_r ($_SERVER); + +echo ""; + +?> \ No newline at end of file diff --git a/session_variables.php b/session_variables.php new file mode 100644 index 0000000..5fb8398 --- /dev/null +++ b/session_variables.php @@ -0,0 +1,19 @@ +'; +print_r($_SESSION); +echo ''; + +$inipath = php_ini_loaded_file(); + +if ($inipath) { + echo 'Loaded php.ini: ' . $inipath; +} else { + echo 'A php.ini file is not loaded'; +} + +?> \ No newline at end of file diff --git a/style.css b/style.css new file mode 100644 index 0000000..cd71239 --- /dev/null +++ b/style.css @@ -0,0 +1,187 @@ +body { + background-image: url("assets/white.jpg"); +} +form { + min-width: 350px; + max-width: 370px; + display: flex; + flex-direction: column; + margin: 20px auto; + align-items: center; + gap: 20px; + text-align: center; + font-size: 20px; +} + +.form-input{ + width: 80%; + height: 1.5rem; + margin: 0 auto; + display: block; + border-radius: 5px; + border: 1px solid grey; +} + +.form-div { + display: flex; + flex-direction: column; + width: 100%; +} + +#message { + font-size: 12px; + position: relative; +} + +.error { + color: red; + display:none; +} + +.notDisplayMessage{ + display:none; +} +.border { + --x: 50%; + --y: 50%; + position: relative; + appearance: none; + padding: 1em 2em; + color: white; + outline: none; + border-radius: 20px; + border: 2px solid transparent; + background: linear-gradient(rgb(212, 109, 19), rgb(233, 230, 218)) padding-box, radial-gradient(farthest-corner at var(--x) var(--y), #0f0f0f, #db9c1e) border-box; +} + +.button{ + color:white; + background-color:#171716; + border-radius:10px; + height: 2rem; + border: 2px; + width: 30%; + cursor: pointer; + margin: 20px auto; +} + + +#navigation, #navigation h1, body, .sidebar ul{ + margin:0; + padding:0; +} +.sidebar h2{ + margin-bottom: 0px; +} +h2{ +color: #E39653; +} +header{ + background-color: rgba(203, 96, 29, 0.705); + color: #DCCAC5; + padding: 10px; +} +h1{ + font-size: 70px; + text-align: center; +} +#div1{ + width: 500px; + margin: 0 auto; + } +div article{ + transition: box-shadow 0.4 ease; + background-color: rgba(212, 125, 32, 0.598); + margin: 1rem 0; + border-radius: 0.7rem; + color: #DCCAC5; + padding: 0.5px; + cursor: pointer; +} +div article h2, div article p{ + margin: 1rem; +} +div article:hover{ + box-shadow: 0 0.1rem 0.4rem rgba(200, 202, 197, 0.2); +} +footer{ + background-color: rgba(203, 96, 29, 0.705); + color: #DCCAC5; + padding: 10px; +} +.symbol{ + position: fixed; + top: 30px; +} +a{ + color: #E29E64; + text-decoration: none; +} +.total .sidebar{ + position: fixed; + left: 0; + top: 0; + width: 20vw; + height: 100vh; + background: rgba(212, 125, 32, 0.932); +} +.total .sidebar h2{ + text-align: center; + line-height: 90px; + border-bottom: 1px solid #c5700f; + margin-bottom: 0px; +} +.total .sidebar ul li{ + color:white; + list-style: none; + padding: 15px; + border-top: 1px solid rgba(0,0,0,01); + border-bottom: 1px solid rgba(220,202,197,01); +} +i{ + margin-right: 8px; +} +.red{ + position: absolute; + bottom: 10px; + width: 20vw; + text-align: center; +} +footer{ + background: rgb(203, 96, 29); +} +.social{ + display: flex; + position: relative; + place-content: flex-end; +} +.social a{ + margin: 0px 10px; + font-size: 25px; +} +.social a:hover{ + transition: 1.5s; + transform: rotate(360deg); +} +.social a i{ + margin: 0 auto; +} +footer p{ + text-align: center; +} +.total .sidebar ul li:hover{ + padding-left: 40px; + background: grey; + cursor: pointer; +} + +.logg{ + color:white; + background-color:#171716; + border-radius:10px; + height: 2rem; + border: 2px; + width: 20%; + cursor: pointer; + margin: 20px auto; +} \ No newline at end of file diff --git a/validate.php b/validate.php new file mode 100644 index 0000000..015dc78 --- /dev/null +++ b/validate.php @@ -0,0 +1,18 @@ +location.href='panel.php'"; +}else{ + header("Location: index.php?error= Did you forget your password?"); + + echo ""; +} + +?> \ No newline at end of file