mirror of
https://github.com/guilhermewerner/site-pi
synced 2025-06-17 06:14:19 +00:00
Initial commit
This commit is contained in:
32
SitePi/Views/User/Index.cshtml
Normal file
32
SitePi/Views/User/Index.cshtml
Normal file
@ -0,0 +1,32 @@
|
||||
@{
|
||||
ViewData["Title"] = "Início";
|
||||
}
|
||||
|
||||
<div class="container">
|
||||
<div class="py-3">
|
||||
<h3>@ViewData["Title"]</h3>
|
||||
</div>
|
||||
<div class="card">
|
||||
<div class="card-header">
|
||||
<span class="text-muted">Users</span>
|
||||
</div>
|
||||
<table class="table table-borderless table-hover">
|
||||
<thead class="border-bottom">
|
||||
<tr>
|
||||
<th>Criatividade</th>
|
||||
<th>Liderança</th>
|
||||
<th>Individualista</th>
|
||||
<th>Insegurança</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<tr>
|
||||
<td>@ViewData["TotalA"]</td>
|
||||
<td>@ViewData["TotalB"]</td>
|
||||
<td>@ViewData["TotalC"]</td>
|
||||
<td>@ViewData["TotalD"]</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
</div>
|
Reference in New Issue
Block a user