diff options
author | Malf Furious <m@lfurio.us> | 2016-01-03 15:53:46 -0500 |
---|---|---|
committer | Malf Furious <m@lfurio.us> | 2016-01-03 15:53:46 -0500 |
commit | 9dc4095be9da030a40ecdc7528bcb02843037a05 (patch) | |
tree | e88f3b0feb4a8ca62070da1f750c9b16fbac8f9d /app/view | |
parent | abb659a2753054158e9f7ec26271740a64a07e7d (diff) | |
download | scrott-9dc4095be9da030a40ecdc7528bcb02843037a05.tar.gz scrott-9dc4095be9da030a40ecdc7528bcb02843037a05.zip |
+ Adding default view for Auth MVC
Diffstat (limited to 'app/view')
-rw-r--r-- | app/view/auth/default.view.php | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/app/view/auth/default.view.php b/app/view/auth/default.view.php new file mode 100644 index 0000000..8769aa2 --- /dev/null +++ b/app/view/auth/default.view.php @@ -0,0 +1,13 @@ +<!DOCTYPE html> + +<html lang="en"> + <head> + <?php include "view/common/head.view.php"; ?> + <title>Scrott - Login</title> + </head> + + <body> + <?php include "view/common/topp.view.php"; ?> + <?php include "view/common/foot.view.php"; ?> + </body> +</html> |