Skip to content

Commit

Permalink
Merge pull request #14 from brainer3220/default-value
Browse files Browse the repository at this point in the history
Add default value for date
  • Loading branch information
brainer3220 authored Feb 14, 2023
2 parents 30e1015 + 0e22427 commit c916fc5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions templates/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ <h1>ν•™κΈ°κ°€ μ‹œμž‘ν•˜λŠ” λ‚ κ³Ό λλ‚˜λŠ” 날을 λ„£μ–΄μ£Όμ„Έμš”.</h1>
<label for="start_date">μ‹œμž‘ν•˜λŠ” λ‚ </label>
</div>
<div class="input">
<input type="date" name="start_date" id="start_date" class="input-text" placeholder="dd/mm/yyyy"
<input type="date" name="start_date" value="2023-03-02" id="start_date" class="input-text" placeholder="dd/mm/yyyy"
required="required">
</div>
</div>
Expand All @@ -34,7 +34,7 @@ <h1>ν•™κΈ°κ°€ μ‹œμž‘ν•˜λŠ” λ‚ κ³Ό λλ‚˜λŠ” 날을 λ„£μ–΄μ£Όμ„Έμš”.</h1>
<label for="end_date">λλ‚˜λŠ” λ‚ </label>
</div>
<div class="input">
<input type="date" name="end_date" id="end_date" class="input-text" placeholder="dd/mm/yyyy"
<input type="date" name="end_date" value="2023-06-22" id="end_date" class="input-text" placeholder="dd/mm/yyyy"
required="required">
</div>
</div>
Expand Down

0 comments on commit c916fc5

Please sign in to comment.