Commit 86f6e701 authored by Sarun Mungthanya's avatar Sarun Mungthanya
Browse files

fix <i> and th

parent 74be1082
Pipeline #26903 passed with stage
in 2 minutes and 19 seconds
...@@ -73,27 +73,27 @@ ...@@ -73,27 +73,27 @@
<table class="is-hoverable table w-full text-left border-b"> <table class="is-hoverable table w-full text-left border-b">
<thead> <thead>
<tr> <tr>
<th <th scope="col"
class="whitespace-nowrap rounded-tl-lg bg-slate-300 px-4 py-3 font-semibold uppercase text-black dark:bg-navy-800 dark:text-navy-100 lg:px-5"> class="whitespace-nowrap rounded-tl-lg bg-slate-300 px-4 py-3 font-semibold uppercase text-black dark:bg-navy-800 dark:text-navy-100 lg:px-5">
# #
</th> </th>
<th <th scope="col"
class="whitespace-nowrap bg-slate-300 px-4 py-3 font-semibold uppercase text-black dark:bg-navy-800 dark:text-navy-100 lg:px-5"> class="whitespace-nowrap bg-slate-300 px-4 py-3 font-semibold uppercase text-black dark:bg-navy-800 dark:text-navy-100 lg:px-5">
Name Name
</th> </th>
<th <th scope="col"
class="whitespace-nowrap bg-slate-300 px-4 py-3 font-semibold uppercase text-black dark:bg-navy-800 dark:text-navy-100 lg:px-5"> class="whitespace-nowrap bg-slate-300 px-4 py-3 font-semibold uppercase text-black dark:bg-navy-800 dark:text-navy-100 lg:px-5">
Email Email
</th> </th>
<th <th scope="col"
class="whitespace-nowrap bg-slate-300 px-4 py-3 font-semibold uppercase text-black dark:bg-navy-800 dark:text-navy-100 lg:px-5"> class="whitespace-nowrap bg-slate-300 px-4 py-3 font-semibold uppercase text-black dark:bg-navy-800 dark:text-navy-100 lg:px-5">
Group Group
</th> </th>
<th <th scope="col"
class="whitespace-nowrap bg-slate-300 px-4 py-3 font-semibold uppercase text-black dark:bg-navy-800 dark:text-navy-100 lg:px-5"> class="whitespace-nowrap bg-slate-300 px-4 py-3 font-semibold uppercase text-black dark:bg-navy-800 dark:text-navy-100 lg:px-5">
Create Date Create Date
</th> </th>
<th <th scope="col"
class="whitespace-nowrap rounded-tr-lg bg-slate-300 px-4 py-3 font-semibold uppercase text-black dark:bg-navy-800 dark:text-navy-100 lg:px-5"> class="whitespace-nowrap rounded-tr-lg bg-slate-300 px-4 py-3 font-semibold uppercase text-black dark:bg-navy-800 dark:text-navy-100 lg:px-5">
Action Action
</th> </th>
...@@ -143,11 +143,11 @@ ...@@ -143,11 +143,11 @@
<div class="flex justify-center space-x-1"> <div class="flex justify-center space-x-1">
<a wire:click="showUserEditForm({{ $user->id }})" <a wire:click="showUserEditForm({{ $user->id }})"
class="btn h-8 w-8 p-0 hover:text-main-container active:text-main-container hover:primary-focus focus:primary-focus active:bg-info/25"> class="btn h-8 w-8 p-0 hover:text-main-container active:text-main-container hover:primary-focus focus:primary-focus active:bg-info/25">
<i class="fa fa-edit"></i> <i aria-hidden="true" class="fa fa-edit"></i>
</a> </a>
<a @click="$wire.emit('showDeleteModal', {{ $user->id }})" <a @click="$wire.emit('showDeleteModal', {{ $user->id }})"
class="btn h-8 w-8 p-0 hover:text-main-container active:text-main-container hover:primary-focus focus:primary-focus active:bg-info/25"> class="btn h-8 w-8 p-0 hover:text-main-container active:text-main-container hover:primary-focus focus:primary-focus active:bg-info/25">
<i class="fa fa-trash"></i> <i aria-hidden="true" class="fa fa-trash"></i>
</a> </a>
</div> </div>
</td> </td>
......
...@@ -80,15 +80,15 @@ ...@@ -80,15 +80,15 @@
<div class="flex flex-col items-center mb-6"> <div class="flex flex-col items-center mb-6">
{{-- <a href="{{ url('auth/google') }}" class="social-button"> {{-- <a href="{{ url('auth/google') }}" class="social-button">
<i class="fab fa-google social-icon"></i> <i aria-hidden="true" class="fab fa-google social-icon"></i>
Sign in with Google Sign in with Google
</a> </a>
<a href="{{ url('auth/apple') }}" class="social-button"> <a href="{{ url('auth/apple') }}" class="social-button">
<i class="fab fa-apple social-icon"></i> <i aria-hidden="true" class="fab fa-apple social-icon"></i>
Sign in with Apple Sign in with Apple
</a> --}} </a> --}}
<a href="{{ url('auth/microsoft') }}" class="social-button"> <a href="{{ url('auth/microsoft') }}" class="social-button">
<i class="fab fa-microsoft social-icon"></i> <i aria-hidden="true" class="fab fa-microsoft social-icon"></i>
Sign in with Microsoft Teams Sign in with Microsoft Teams
</a> </a>
</div> </div>
......
...@@ -43,7 +43,7 @@ ...@@ -43,7 +43,7 @@
class="w-full mt-4 bg-[#f9f9f9] border-b-2 border-primary pl-1 pr-4 py-2 focus:outline-none" class="w-full mt-4 bg-[#f9f9f9] border-b-2 border-primary pl-1 pr-4 py-2 focus:outline-none"
placeholder="" value="{{ old('email') ?? 'nbdev@netbay.co.th' }}" name="email"> placeholder="" value="{{ old('email') ?? 'nbdev@netbay.co.th' }}" name="email">
<div class="absolute inset-y-0 right-0 flex items-center pr-3"> <div class="absolute inset-y-0 right-0 flex items-center pr-3">
<i class="fa fa-user text-primary text-lg" aria-hidden="true"></i> <i aria-hidden="true" class="fa fa-user text-primary text-lg" aria-hidden="true"></i>
</div> </div>
@error('email') @error('email')
<span class="text-tiny+ text-error">{{ $message }}</span> <span class="text-tiny+ text-error">{{ $message }}</span>
...@@ -56,7 +56,7 @@ ...@@ -56,7 +56,7 @@
class="w-full mt-4 bg-[#f9f9f9] border-b-2 border-primary pl-1 pr-4 py-2 focus:outline-none" class="w-full mt-4 bg-[#f9f9f9] border-b-2 border-primary pl-1 pr-4 py-2 focus:outline-none"
placeholder="" value="{{ old('password') ?? 'password' }}" name="password"> placeholder="" value="{{ old('password') ?? 'password' }}" name="password">
<div class="absolute inset-y-0 right-0 flex items-center pr-3"> <div class="absolute inset-y-0 right-0 flex items-center pr-3">
<i class="fa fa-unlock-alt text-primary text-lg" aria-hidden="true"></i> <i aria-hidden="true" class="fa fa-unlock-alt text-primary text-lg" aria-hidden="true"></i>
</div> </div>
@error('password') @error('password')
<span class="text-tiny+ text-error">{{ $message }}</span> <span class="text-tiny+ text-error">{{ $message }}</span>
......
...@@ -121,11 +121,11 @@ ...@@ -121,11 +121,11 @@
cellspacing=1 bgcolor='#DDDDDD'> cellspacing=1 bgcolor='#DDDDDD'>
<thead class='simpleThead'> <thead class='simpleThead'>
<tr> <tr>
<th>Patch Date</th> <th scope="col" >Patch Date</th>
<th>Title</th> <th scope="col" >Title</th>
<th>Level</th> <th scope="col" >Level</th>
<th>Description</th> <th scope="col" >Description</th>
<th>Action</th> <th scope="col" >Action</th>
</tr> </tr>
</thead> </thead>
<tbody> <tbody>
......
...@@ -4,35 +4,35 @@ ...@@ -4,35 +4,35 @@
<table class="is-hoverable table w-full text-left "> <table class="is-hoverable table w-full text-left ">
<thead> <thead>
<tr> <tr>
<th <th scope="col"
class="whitespace-nowrap text-center rounded-tl-lg bg-slate-300 px-4 py-3 font-semibold uppercase text-black dark:bg-navy-800 dark:text-navy-100 lg:px-5"> class="whitespace-nowrap text-center rounded-tl-lg bg-slate-300 px-4 py-3 font-semibold uppercase text-black dark:bg-navy-800 dark:text-navy-100 lg:px-5">
Patch ID Patch ID
</th> </th>
<th <th scope="col"
class="whitespace-nowrap bg-slate-300 text-black px-2 py-3 font-semibold uppercase text-slate-800 dark:bg-navy-800 dark:text-navy-100 lg:px-2"> class="whitespace-nowrap bg-slate-300 text-black px-2 py-3 font-semibold uppercase text-slate-800 dark:bg-navy-800 dark:text-navy-100 lg:px-2">
Patch Name Patch Name
</th> </th>
<th <th scope="col"
class="whitespace-nowrap bg-slate-300 text-black px-2 py-3 font-semibold uppercase text-slate-800 dark:bg-navy-800 dark:text-navy-100 lg:px-2"> class="whitespace-nowrap bg-slate-300 text-black px-2 py-3 font-semibold uppercase text-slate-800 dark:bg-navy-800 dark:text-navy-100 lg:px-2">
Description Description
</th> </th>
<th <th scope="col"
class="whitespace-nowrap bg-slate-300 text-black px-2 py-3 font-semibold uppercase text-slate-800 dark:bg-navy-800 dark:text-navy-100 lg:px-2"> class="whitespace-nowrap bg-slate-300 text-black px-2 py-3 font-semibold uppercase text-slate-800 dark:bg-navy-800 dark:text-navy-100 lg:px-2">
Server Server
</th> </th>
<th <th scope="col"
class="whitespace-nowrap bg-slate-300 text-black px-2 py-3 font-semibold uppercase text-slate-800 dark:bg-navy-800 dark:text-navy-100 lg:px-2"> class="whitespace-nowrap bg-slate-300 text-black px-2 py-3 font-semibold uppercase text-slate-800 dark:bg-navy-800 dark:text-navy-100 lg:px-2">
Date Date
</th> </th>
<th <th scope="col"
class="whitespace-nowrap bg-slate-300 text-black px-2 py-3 font-semibold uppercase text-slate-800 dark:bg-navy-800 dark:text-navy-100 lg:px-2"> class="whitespace-nowrap bg-slate-300 text-black px-2 py-3 font-semibold uppercase text-slate-800 dark:bg-navy-800 dark:text-navy-100 lg:px-2">
Level Level
</th> </th>
<th <th scope="col"
class="whitespace-nowrap bg-slate-300 text-black px-2 py-3 font-semibold uppercase text-slate-800 dark:bg-navy-800 dark:text-navy-100 lg:px-2"> class="whitespace-nowrap bg-slate-300 text-black px-2 py-3 font-semibold uppercase text-slate-800 dark:bg-navy-800 dark:text-navy-100 lg:px-2">
Remark Remark
</th> </th>
<th <th scope="col"
class="whitespace-nowrap rounded-tr-lg bg-slate-300 text-black px-2 py-3 font-semibold uppercase text-slate-800 dark:bg-navy-800 dark:text-navy-100 lg:px-2"> class="whitespace-nowrap rounded-tr-lg bg-slate-300 text-black px-2 py-3 font-semibold uppercase text-slate-800 dark:bg-navy-800 dark:text-navy-100 lg:px-2">
Action Action
</th> </th>
...@@ -43,14 +43,6 @@ ...@@ -43,14 +43,6 @@
@foreach ($results as $patch) @foreach ($results as $patch)
<tr <tr
class="border-y border-transparent border-b-slate-200 dark:border-b-navy-500"> class="border-y border-transparent border-b-slate-200 dark:border-b-navy-500">
{{-- <td class="whitespace-nowrap px-4 py-3 sm:px-5">
<label class="inline-flex items-center space-x-2">
<input
class="form-checkbox is-basic h-4 w-4 rounded border-slate-400/70 checked:bg-primary checked:border-primary hover:border-primary focus:border-primary dark:bg-navy-900 dark:border-navy-500 dark:checked:bg-accent dark:checked:border-accent dark:hover:border-accent dark:focus:border-accent"
type="checkbox" wire:model.defer="selectedPatchs"
value="{{ $patch->id }}" />
</label>
</td> --}}
<td class="whitespace-nowrap px-1 py-3 sm:px-2 text-center">{{ $patch->PID }}</td> <td class="whitespace-nowrap px-1 py-3 sm:px-2 text-center">{{ $patch->PID }}</td>
<td class="whitespace-nowrap px-1 py-3 sm:px-2">{{ $patch->PATCHNAME }}</td> <td class="whitespace-nowrap px-1 py-3 sm:px-2">{{ $patch->PATCHNAME }}</td>
<td class="whitespace-nowrap px-1 py-3 sm:px-2"> <td class="whitespace-nowrap px-1 py-3 sm:px-2">
...@@ -63,7 +55,7 @@ ...@@ -63,7 +55,7 @@
<div class="flex justify-center space-x-2"> <div class="flex justify-center space-x-2">
<a wire:click="showpatchEditForm({{ $patch->PID }})" <a wire:click="showpatchEditForm({{ $patch->PID }})"
class="btn h-8 w-8 p-0 hover:text-main-container active:text-main-container hover:primary-focus focus:primary-focus active:bg-info/25"> class="btn h-8 w-8 p-0 hover:text-main-container active:text-main-container hover:primary-focus focus:primary-focus active:bg-info/25">
<i class="fa fa-edit"></i> <i aria-hidden="true" class="fa fa-edit"></i>
</a> </a>
</div> </div>
</td> </td>
......
sonar.projectKey=SpnPatch
sonar.projectName=SpnPatch
sonar.projectVersion=1.0
sonar.sources=.
sonar.host.url=http://localhost:9000
sonar.login=sqp_917ecaf164588e499aca30eaac9dd1e9f4f3765a
sonar.exclusions=vendor/**,storage/**,bootstrap/cache/**,public/**
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment