-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
20 changed files
with
189 additions
and
88 deletions.
There are no files selected for viewing
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
File renamed without changes.
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
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
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
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
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
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
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,7 +4,95 @@ | |
|
||
<template> | ||
<div> | ||
users | ||
<div class="join"> | ||
<div> | ||
<div> | ||
<input class="input input-shadow input-bordered join-item" placeholder="Search"> | ||
</div> | ||
</div> | ||
<select class="select select-bordered join-item"> | ||
<option disabled selected> | ||
Filter | ||
</option> | ||
<option>Sci-fi</option> | ||
<option>Drama</option> | ||
<option>Action</option> | ||
</select> | ||
<div class="indicator"> | ||
<span class="indicator-item badge badge-secondary">new</span> | ||
<button class="btn btn-shadow join-item"> | ||
Search | ||
</button> | ||
</div> | ||
</div> | ||
</div> | ||
<div> | ||
<div class="overflow-x-auto"> | ||
<table class="table"> | ||
<!-- head --> | ||
<thead> | ||
<tr> | ||
<th> | ||
<label> | ||
<input type="checkbox" class="checkbox"> | ||
</label> | ||
</th> | ||
<th>Name</th> | ||
<th>Job</th> | ||
<th>Favorite Color</th> | ||
<th /> | ||
</tr> | ||
</thead> | ||
<tbody> | ||
<!-- row 1 --> | ||
<tr> | ||
<th> | ||
<label> | ||
<input type="checkbox" class="checkbox"> | ||
</label> | ||
</th> | ||
<td> | ||
<div class="flex items-center space-x-3"> | ||
<div class="avatar"> | ||
<div class="mask mask-squircle w-12 h-12"> | ||
<img src="/[email protected]" alt="Avatar Tailwind CSS Component"> | ||
</div> | ||
</div> | ||
<div> | ||
<div class="font-bold"> | ||
Hart Hagerty | ||
</div> | ||
<div class="text-sm opacity-50"> | ||
United States | ||
</div> | ||
</div> | ||
</div> | ||
</td> | ||
<td> | ||
Zemlak, Daniel and Leannon | ||
<br> | ||
<span class="badge badge-ghost badge-sm">Desktop Support Technician</span> | ||
</td> | ||
<td>Purple</td> | ||
<th> | ||
<button class="btn btn-ghost btn-xs"> | ||
details | ||
</button> | ||
</th> | ||
</tr> | ||
</tbody> | ||
<!-- foot --> | ||
<!-- <tfoot> | ||
<tr> | ||
<th /> | ||
<th>Name</th> | ||
<th>Job</th> | ||
<th>Favorite Color</th> | ||
<th /> | ||
</tr> | ||
</tfoot> --> | ||
</table> | ||
</div> | ||
</div> | ||
</template> | ||
|
||
|
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
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
Oops, something went wrong.