소스 검색

first upload

bufon2211 6 년 전
부모
커밋
1737ed2131
3개의 변경된 파일20개의 추가작업 그리고 0개의 파일을 삭제
  1. 10 0
      public/css/style.css
  2. BIN
      public/img/error.jpeg
  3. 10 0
      public/index.php

+ 10 - 0
public/css/style.css

@@ -0,0 +1,10 @@
+.footer {
+    position: absolute;
+    bottom: 0;
+    width: 100%;
+    height: 60px;
+    background-color: #f5f5f5;
+}
+.container .text-muted {
+    margin: 20px 0;
+}

BIN
public/img/error.jpeg


+ 10 - 0
public/index.php

@@ -0,0 +1,10 @@
+<?php
+
+include_once('../autoloader.php');
+
+use App\Controller;
+
+$action = isset($_GET['action']) ? $_GET['action'] : '';
+
+$controller = new Controller($action);
+$controller->execute();