View loginform.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="en" > | |
<head> | |
<meta charset="UTF-8"> | |
<title>CodePen - Flat HTML5/CSS3 Login Form</title> | |
<link rel="stylesheet" href="./style.css"> | |
</head> | |
<body> | |
<!-- partial:index.partial.html --> |
View CSS for a Contact form
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@import url(https://fonts.googleapis.com/css?family=Roboto:300); | |
.login-page { | |
width: 360px; | |
padding: 8% 0 0; | |
margin: auto; | |
} | |
.form { | |
position: relative; | |
z-index: 1; |
View gist:de3cc1f191b38ef12ef93a756e5aeb5a
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php namespace App\Http\Controllers; | |
use App\Http\Requests; | |
use App\Http\Controllers\Controller; | |
use Illuminate\Http\Request; | |
class TestController extends Controller { | |
public function index() { |
View test.blade.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@extends('admin_template') | |
@section('content') | |
<div class='row'> | |
<div class='col-md-6'> | |
<!-- Box --> | |
<div class="box box-primary"> | |
<div class="box-header with-border"> | |
<h3 class="box-title">Randomly Generated Tasks</h3> | |
<div class="box-tools pull-right"> |
View admin_template.blade.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<!-- | |
This is a starter template page. Use this page to start your new project from | |
scratch. This page gets rid of all links and provides the needed markup only. | |
--> | |
<html> | |
<head> | |
<meta charset="UTF-8"> | |
<title>{{ $page_title or "AdminLTE Dashboard" }}</title> | |
<meta content='width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no' name='viewport'> |
View header.blade.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- Main Header --> | |
<header class="main-header"> | |
<!-- Logo --> | |
<a href="index2.html" class="logo"><b>Admin</b>LTE</a> | |
<!-- Header Navbar --> | |
<nav class="navbar navbar-static-top" role="navigation"> | |
<!-- Sidebar toggle button--> | |
<a href="#" class="sidebar-toggle" data-toggle="offcanvas" role="button"> |
View starter.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<!-- | |
This is a starter template page. Use this page to start your new project from | |
scratch. This page gets rid of all links and provides the needed markup only. | |
--> | |
<html> | |
<head> | |
<meta charset="UTF-8"> | |
<title>AdminLTE 2 | Dashboard</title> | |
<meta content='width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no' name='viewport'> |
View gist:b0fdf2474e1745959080d681dcdef181
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php namespace App\Http\Controllers; | |
use App\Http\Requests; | |
use App\Http\Controllers\Controller; | |
use Illuminate\Http\Request; | |
class TestController extends Controller { | |
public function index() { |
View test.blade.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@extends('admin_template') | |
@section('content') | |
<div class='row'> | |
<div class='col-md-6'> | |
<!-- Box --> | |
<div class="box box-primary"> | |
<div class="box-header with-border"> | |
<h3 class="box-title">Randomly Generated Tasks</h3> | |
<div class="box-tools pull-right"> |
NewerOlder