Design Refresh
This commit is contained in:
parent
1dee7ae516
commit
e7202174f7
44 changed files with 593 additions and 228 deletions
25
resources/views/admin/create-category.blade.php
Normal file
25
resources/views/admin/create-category.blade.php
Normal file
|
|
@ -0,0 +1,25 @@
|
|||
<style>
|
||||
body {
|
||||
background-image: url('/images/login.jpg');
|
||||
background-size: cover;
|
||||
}
|
||||
input, button { border: black 1px solid }
|
||||
</style>
|
||||
<p><font color="#FF0000">TEMPORARY FORM REPLACE THIS BEFORE PUSHING TO PROD</font></p>
|
||||
<form method="POST" action="{{ route('bookmarks.create-category') }}">
|
||||
@csrf
|
||||
<table>
|
||||
<tr>
|
||||
<td><label for="name"><strong>Name:</strong></label></td>
|
||||
<td><input name="name" type="text" id="name"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><label for="shuffled"><strong>Shuffle?</strong></label></td>
|
||||
<td><input type="checkbox" name="shuffled" class="switch-input" value="1" {{ old('shuffled') ? 'checked="checked"' : '' }}/></td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
<button type="submit">Submit</button>
|
||||
</form>
|
||||
|
||||
<a href="{{ route('bookmarks') }}"><img src="/images/buttons/elwiwi.png"> el wiwi</a>
|
||||
Loading…
Add table
Add a link
Reference in a new issue