dashboard.html (814B)
1 <!DOCTYPE html> 2 <html lang="eng"> 3 <title>Add User</title> 4 <link rel="stylesheet" href="/views/css/theme.css"> 5 <link rel="stylesheet" href="/views/css/form_template.css"> 6 <link rel="stylesheet" href="/views/css/course.css"> 7 <meta name="viewport" content="width=device-width, initial-scale=1" /> 8 </head> 9 <body> 10 {{ $header }} 11 <div class="flex_container"> 12 <div class ="side_bar"> 13 <div class ="form_card"> 14 <h1>Dashboard</h1> 15 Welcome {{ $first_name }}! 16 {{ $links }} 17 </div> 18 </div> 19 <div class = "courses"> 20 <div class="table"> 21 <div class="form_card"> 22 {{ $in_course }} 23 </div> 24 </div> 25 </div> 26 </div> 27 </body> 28 </html>