Skip to content

Commit

Permalink
rm Dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
nickpreston24 committed Jul 2, 2024
1 parent 487f32a commit 0f3f8fc
Show file tree
Hide file tree
Showing 3 changed files with 29 additions and 60 deletions.
30 changes: 0 additions & 30 deletions Dockerfile

This file was deleted.

57 changes: 28 additions & 29 deletions Pages/Builder/mockups/MainBuilderPage.cshtml
Original file line number Diff line number Diff line change
Expand Up @@ -50,9 +50,10 @@
<div class="grid">



<div class="card w-96 bg-base-100 shadow-xl">
<figure><img :src="" alt="Shoes" /></figure>
<figure>
<img :src="" alt="Shoes"/>
</figure>
<div class="card-body">
<h2 class="card-title">
Shoes!
Expand Down Expand Up @@ -86,31 +87,31 @@

<table class="table table-compact w-full">
<thead>
<tr>
<th class=''>
<input type="text" name="Name" class="input input-bordered input-sm max-w-xs"
autocomplete="off" hx-trigger="keyup changed delay:250ms"
hx-get='@Url.Page("", "SearchBuilds")' hx-indicator="#loading"
hx-target='#search_results' hx-swap='innerHTML' placeholder="e.g., Glock"
aria-label="Name" aria-describedby="search-addon" />
</th>
</tr>
<tr>
<th>
<label>
<input type="checkbox" class="checkbox" />
</label>
</th>
<th>Name</th>
<th>Total Cost</th>
<th>Reasoning</th>
<th>Id</th>
<th>???</th>
<th>???</th>
</tr>
<tr>
<th class=''>
<input type="text" name="Name" class="input input-bordered input-sm max-w-xs"
autocomplete="off" hx-trigger="keyup changed delay:250ms"
hx-get='@Url.Page("", "SearchBuilds")' hx-indicator="#loading"
hx-target='#search_results' hx-swap='innerHTML' placeholder="e.g., Glock"
aria-label="Name" aria-describedby="search-addon"/>
</th>
</tr>
<tr>
<th>
<label>
<input type="checkbox" class="checkbox"/>
</label>
</th>
<th>Name</th>
<th>Total Cost</th>
<th>Reasoning</th>
<th>Id</th>
<th>???</th>
<th>???</th>
</tr>
</thead>
<tbody id='search_results'>
<div class="htmx-indicator" id='loading'>loading...</div>
<div class="htmx-indicator" id='loading'>loading...</div>
</tbody>
</table>
</figure>
Expand All @@ -121,8 +122,6 @@
</div>




<!-- GRID -->


Expand Down Expand Up @@ -182,11 +181,11 @@
<div
class='flex flex-col items-center h-screen'
x-data='setup()'>
<partial name="_BuildSteps" />
<partial name="Builder/Components/_BuildSteps" />
<div class="border-ghost border-l-4 border-r-2">
<div class='grid grid-cols-2 grid-rows-auto'>
<partial name="_BarrelPicker" />
<partial name="Builder/Components/_BarrelPicker" />
<section id='recommendations' > </section>
</div>
Expand Down
2 changes: 1 addition & 1 deletion Pages/CarCapital/Inventory/OldAttempt.cshtml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@

<form
hx-post
hx-page="HxPostExample"
hx-page="Inventory/OldAttempt"
hx-page-handler="Validate"
hx-swap="outerHTML"
class="form-horizontal needs-validation" _="on htmx:beforeSend set #submitButton.disabled to 'disabled'">
Expand Down

0 comments on commit 0f3f8fc

Please sign in to comment.