Ignore:
Timestamp:
09/02/26 05:22:09 (4 weeks ago)
Author:
mmilevski <markomilevski3@…>
Branches:
main
Children:
1dcdb2c
Parents:
d89d25b
Message:

Various UI bugfixes.

Location:
KernelRecordsMVC.Web/Views/Admin
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • KernelRecordsMVC.Web/Views/Admin/CreateRelease.cshtml

    rd89d25b r595d2e5  
    4343
    4444
    45         <div asp-validation-summary="ModelOnly"
     45        <div asp-validation-summary="All"
    4646             class="admin-validation">
    4747        </div>
    48 
    4948
    5049        <!-- =================================================
    … …  
    489488                                <input asp-for="Tracks[i].SongDuration"
    490489                                       data-field="SongDuration"
    491                                        placeholder="03:42" />
     490                                       placeholder="03:42"
     491                                       inputmode="numeric"
     492                                       maxlength="5" />
    492493
    493494                                <span asp-validation-for="Tracks[i].SongDuration"
    … …  
    645646                    <input type="text"
    646647                           data-field="SongDuration"
    647                            placeholder="03:42" />
     648                           placeholder="03:42"
     649                           inputmode="numeric"
     650                           maxlength="5"
     651                           pattern="\d{1,2}:[0-5]\d"
     652                           title="Enter a duration like 03:42" />
    648653
    649654                </div>
  • KernelRecordsMVC.Web/Views/Admin/Index.cshtml

    rd89d25b r595d2e5  
    1313        <div>
    1414
    15             <img src="~/images/logo.png"
    16                  asp-append-version="true"
    17                  alt="Kernel Records"
    18                  class="admin-page-logo" />
    19 
    2015            <h1>Admin Dashboard</h1>
    2116
    … …  
    310305    </section>
    311306
    312 
    313     <!-- =====================================================
    314          WORKFLOW INFO
    315          ===================================================== -->
    316 
    317     <section class="admin-section">
    318 
    319         <div class="admin-section-heading">
    320 
    321             <div>
    322 
    323                 <span class="admin-eyebrow">
    324                     ADMIN WORKFLOW
    325                 </span>
    326 
    327                 <h2>Catalog Process</h2>
    328 
    329             </div>
    330 
    331         </div>
    332 
    333 
    334         <div class="admin-workflow-grid">
    335 
    336             <div class="admin-workflow-card">
    337 
    338                 <span class="admin-workflow-number">
    339                     01
    340                 </span>
    341 
    342                 <div>
    343 
    344                     <strong>
    345                         Create Release
    346                     </strong>
    347 
    348                     <p>
    349                         Add the album or single,
    350                         artists and track information.
    351                     </p>
    352 
    353                 </div>
    354 
    355             </div>
    356 
    357 
    358             <div class="admin-workflow-card">
    359 
    360                 <span class="admin-workflow-number">
    361                     02
    362                 </span>
    363 
    364                 <div>
    365 
    366                     <strong>
    367                         Create Product
    368                     </strong>
    369 
    370                     <p>
    371                         Add its vinyl, CD or cassette
    372                         store edition.
    373                     </p>
    374 
    375                 </div>
    376 
    377             </div>
    378 
    379 
    380             <div class="admin-workflow-card">
    381 
    382                 <span class="admin-workflow-number">
    383                     03
    384                 </span>
    385 
    386                 <div>
    387 
    388                     <strong>
    389                         Manage Inventory
    390                     </strong>
    391 
    392                     <p>
    393                         Change prices, stock,
    394                         descriptions or apply discounts.
    395                     </p>
    396 
    397                 </div>
    398 
    399             </div>
    400 
    401         </div>
    402 
    403     </section>
    404 
    405307</div>
Note: See TracChangeset for help on using the changeset viewer.