|
1 | 1 | <!DOCTYPE html>
|
| 2 | +<html> |
| 3 | + |
| 4 | +<head> |
| 5 | + <meta charset="utf-8"> |
| 6 | + <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"> |
| 7 | + <meta name="description" content="Start your development with a Dashboard for Bootstrap 4."> |
| 8 | + <meta name="author" content="Creative Tim"> |
| 9 | + <title>Digikaksha - A digital world</title> |
| 10 | + <link rel="icon" href="assets/img/brand/favicon.png" type="image/png"> |
| 11 | + <!-- Fonts --> |
| 12 | + <link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Open+Sans:300,400,600,700"> |
| 13 | + <!-- Icons --> |
| 14 | + <link rel="stylesheet" href="assets/vendor/nucleo/css/nucleo.css" type="text/css"> |
| 15 | + <link rel="stylesheet" href="assets/vendor/%40fortawesome/fontawesome-free/css/all.min.css" type="text/css"> |
| 16 | + <!-- Page plugins --> |
| 17 | + <!-- Argon CSS --> |
| 18 | + <link rel="stylesheet" href="assets/css/argon.min5438.css?v=1.2.0" type="text/css"> |
| 19 | +</head> |
| 20 | + |
| 21 | +<body> |
| 22 | + <noscript><iframe src="https://www.googletagmanager.com/ns.html?id=GTM-NKDMSK6" height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript> |
| 23 | + <nav id="navbar-main" class="navbar navbar-horizontal navbar-main navbar-expand-lg navbar-dark bg-primary"> |
| 24 | + <div class="container"> |
| 25 | + <a class="navbar-brand" style="font-size: 200%; color:white;"> |
| 26 | + DigiKaksha |
| 27 | + </a> |
| 28 | + <button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbar-collapse" aria-controls="navbar-collapse" aria-expanded="false" aria-label="Toggle navigation"> |
| 29 | + <span class="navbar-toggler-icon"></span> |
| 30 | + </button> |
| 31 | + <div class="navbar-collapse navbar-custom-collapse collapse" id="navbar-collapse"> |
| 32 | + <div class="navbar-collapse-header"> |
| 33 | + <div class="row"> |
| 34 | + <div class="col-6 collapse-brand"> |
| 35 | + DigiKaksha |
| 36 | + </div> |
| 37 | + <div class="col-6 collapse-close"> |
| 38 | + <button type="button" class="navbar-toggler" data-toggle="collapse" data-target="#navbar-collapse" aria-controls="navbar-collapse" aria-expanded="false" aria-label="Toggle navigation"> |
| 39 | + <span></span> |
| 40 | + <span></span> |
| 41 | + </button> |
| 42 | + </div> |
| 43 | + </div> |
| 44 | + </div> |
| 45 | + <ul class="navbar-nav mr-auto"> |
| 46 | + </ul> |
| 47 | + <hr class="d-lg-none" /> |
| 48 | + <ul class="navbar-nav align-items-lg-center ml-lg-auto"> |
| 49 | + <li class="nav-item d-none d-lg-block ml-lg-4"> |
| 50 | + <a href="" target="_blank" class="btn btn-neutral btn-icon"> |
| 51 | + <span class="btn-inner--icon"> |
| 52 | + <i class="fas fa-school mr-2"></i> |
| 53 | + </span> |
| 54 | + <span class="nav-link-inner--text">Made for IIITA</span> |
| 55 | + </a> |
| 56 | + @if (Route::has('login')) |
| 57 | + @auth |
| 58 | + <a href="/home" target="_blank" class="btn btn-neutral btn-icon"> |
| 59 | + <span class="btn-inner--icon"> |
| 60 | + <i class="fas fa-home mr-2"></i> |
| 61 | + </span> |
| 62 | + <span class="nav-link-inner--text">Home</span> |
| 63 | + </a> |
| 64 | + |
| 65 | + @else |
| 66 | + <a href="/login" target="_blank" class="btn btn-neutral btn-icon"> |
| 67 | + <span class="btn-inner--icon"> |
| 68 | + <i class="fas fa-user mr-2"></i> |
| 69 | + </span> |
| 70 | + <span class="nav-link-inner--text">Login</span> |
| 71 | + </a> |
| 72 | + @endauth |
| 73 | + </div> |
| 74 | + @endif |
| 75 | + |
| 76 | + |
| 77 | + </li> |
| 78 | + </ul> |
| 79 | + </div> |
| 80 | + </div> |
| 81 | + </nav> |
| 82 | + <!-- Main content --> |
| 83 | + <div class="main-content"> |
| 84 | + <!-- Header --> |
| 85 | + <div class="header bg-primary pt-5 pb-7"> |
| 86 | + <div class="container"> |
| 87 | + <div class="header-body"> |
| 88 | + <div class="row align-items-center"> |
| 89 | + <div class="col-lg-6"> |
| 90 | + <div class="pr-5"> |
| 91 | + <h1 class="display-2 text-white font-weight-bold mb-0">A digital world</h1> |
| 92 | + <h2 class="display-4 text-white font-weight-light">Please read the below para for sample login details</h2> |
| 93 | + <p class="text-white mt-4">To test the application use the following sample details,<b> Username: student/admin/teacher Password:password</b>. Different type of user have different functions.</p> |
| 94 | + <div class="mt-5"> |
| 95 | + @if (Route::has('login')) |
| 96 | + <div class="top-right links"> |
| 97 | + @auth |
| 98 | + <a class="btn btn-neutral my-2" href="{{ url('/home') }}">Home</a> |
| 99 | + @else |
| 100 | + <a class="btn btn-neutral my-2" href="{{ route('login') }}">Login</a> |
| 101 | + |
| 102 | + @endauth |
| 103 | + </div> |
| 104 | + @endif |
| 105 | + |
| 106 | + |
| 107 | + </div> |
| 108 | + </div> |
| 109 | + </div> |
| 110 | + <div class="col-lg-6"> |
| 111 | + <div class="row pt-5"> |
| 112 | + <div class="col-md-6"> |
| 113 | + <div class="card"> |
| 114 | + <div class="card-body"> |
| 115 | + <div class="icon icon-shape bg-gradient-red text-white rounded-circle shadow mb-4"> |
| 116 | + <i class="ni ni-active-40"></i> |
| 117 | + </div> |
| 118 | + <h5 class="h3">Classrooms and Courses</h5> |
| 119 | + <p style="font-size:80%; ">Teacher can manage multiple courses,classroom, grading with instant feedback to students.</p> |
| 120 | + </div> |
| 121 | + </div> |
| 122 | + <div class="card"> |
| 123 | + <div class="card-body"> |
| 124 | + <div class="icon icon-shape bg-gradient-info text-white rounded-circle shadow mb-4"> |
| 125 | + <i class="ni ni-active-40"></i> |
| 126 | + </div> |
| 127 | + <h5 class="h3">Announcements</h5> |
| 128 | + <p style="font-size:80%; ">Fully integrated Announcement feature to ease life of teacher and student.</p> |
| 129 | + </div> |
| 130 | + </div> |
| 131 | + </div> |
| 132 | + <div class="col-md-6 pt-lg-5 pt-4"> |
| 133 | + <div class="card mb-4"> |
| 134 | + <div class="card-body"> |
| 135 | + <div class="icon icon-shape bg-gradient-success text-white rounded-circle shadow mb-4"> |
| 136 | + <i class="ni ni-active-40"></i> |
| 137 | + </div> |
| 138 | + <h5 class="h3">Attendance</h5> |
| 139 | + <p style="font-size:80%;">Helps you maintain your attendance and helps you in skipping classes. Helps teacher/tutors Easily take and record attendance.</p> |
| 140 | + </div> |
| 141 | + </div> |
| 142 | + <div class="card mb-4"> |
| 143 | + <div class="card-body"> |
| 144 | + <div class="icon icon-shape bg-gradient-warning text-white rounded-circle shadow mb-4"> |
| 145 | + <i class="ni ni-active-40"></i> |
| 146 | + </div> |
| 147 | + <h5 class="h3">Assignments</h5> |
| 148 | + <p style="font-size:80%;"> You will love how easy it is for teachers to keep track of assignments, and for students to submit and get them graded.</p> |
| 149 | + </div> |
| 150 | + </div> |
| 151 | + </div> |
| 152 | + </div> |
| 153 | + </div> |
| 154 | + </div> |
| 155 | + </div> |
| 156 | + </div> |
| 157 | + <div class="separator separator-bottom separator-skew zindex-100"> |
| 158 | + <svg x="0" y="0" viewBox="0 0 2560 100" preserveAspectRatio="none" version="1.1" xmlns="http://www.w3.org/2000/svg"> |
| 159 | + <polygon class="fill-default" points="2560 0 2560 100 0 100"></polygon> |
| 160 | + </svg> |
| 161 | + </div> |
| 162 | + </div> |
| 163 | + <section class="py-6 pb-9 bg-default"> |
| 164 | + <div class="container"> |
| 165 | + <div class="row justify-content-center text-center"> |
| 166 | + <div class="col-md-8"> |
| 167 | + <h2 class="display-3 text-white">SOE Project - Group Gamma</h3> |
| 168 | + <p class="lead text-white"> |
| 169 | + This web application is made as our software engineering project, the team Gamma(IIT2018040,43,80,95) has put a lot of efforts, this is a fully functional application which some exciting features :) |
| 170 | + </p> |
| 171 | + </div> |
| 172 | + </div> |
| 173 | + </div> |
| 174 | + </section> |
| 175 | + |
| 176 | + </div> |
| 177 | + <!-- Footer --> |
| 178 | + <footer class="py-5" id="footer-main"> |
| 179 | + <div class="container"> |
| 180 | + <div class="row align-items-center justify-content-xl-between"> |
| 181 | + <div class="col-xl-6"> |
| 182 | + <div class="copyright text-center text-xl-left text-muted"> |
| 183 | + © 2020 DigiKaksha</a> |
| 184 | + </div> |
| 185 | + </div> |
| 186 | + <div class="col-xl-6"> |
| 187 | + </div> |
| 188 | + </div> |
| 189 | + </div> |
| 190 | + </footer> |
| 191 | + |
| 192 | + <script src="assets/vendor/jquery/dist/jquery.min.js"></script> |
| 193 | + <script src="assets/vendor/bootstrap/dist/js/bootstrap.bundle.min.js"></script> |
| 194 | + <script src="assets/vendor/js-cookie/js.cookie.js"></script> |
| 195 | + <script src="assets/vendor/jquery.scrollbar/jquery.scrollbar.min.js"></script> |
| 196 | + <script src="assets/vendor/jquery-scroll-lock/dist/jquery-scrollLock.min.js"></script> |
| 197 | + <script src="assets/vendor/onscreen/dist/on-screen.umd.min.js"></script> |
| 198 | + <script src="assets/js/argon.min5438.js?v=1.2.0"></script> |
| 199 | + |
| 200 | +</body> |
| 201 | +</html> |
| 202 | +{{-- <!-- |
| 203 | +<!DOCTYPE html> |
2 | 204 | <html lang="{{ str_replace('_', '-', app()->getLocale()) }}">
|
3 | 205 | <head>
|
4 | 206 | <meta charset="utf-8">
|
|
81 | 283 |
|
82 | 284 | <div class="content">
|
83 | 285 | <div class="title m-b-md">
|
84 |
| - Laravel |
| 286 | + DigiKaksha |
85 | 287 | </div>
|
86 | 288 |
|
87 | 289 | <div class="links">
|
88 |
| - <a href="https://laravel.com/docs">Docs</a> |
89 |
| - <a href="https://laracasts.com">Laracasts</a> |
90 |
| - <a href="https://laravel-news.com">News</a> |
91 |
| - <a href="https://blog.laravel.com">Blog</a> |
92 |
| - <a href="https://nova.laravel.com">Nova</a> |
93 |
| - <a href="https://forge.laravel.com">Forge</a> |
94 |
| - <a href="https://vapor.laravel.com">Vapor</a> |
95 |
| - <a href="https://github.com/laravel/laravel">GitHub</a> |
| 290 | + <a href="https://laravel.com/docs">a Digital World with Classroom, Courses, Attendance, Assignments, teachers, you and me ;)</a> |
| 291 | + |
96 | 292 | </div>
|
97 | 293 | </div>
|
98 | 294 | </div>
|
99 | 295 | </body>
|
100 |
| -</html> |
| 296 | +</html> --}} |
0 commit comments