Skip to content

Commit

Permalink
Fix #47 (#58)
Browse files Browse the repository at this point in the history
  • Loading branch information
crystopherross authored Feb 22, 2024
1 parent 468dc5d commit c360e3f
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/main/resources/templates/edit.html
Original file line number Diff line number Diff line change
Expand Up @@ -127,16 +127,16 @@ <h2>Redigera post</h2>
<div class="form-group">
<div class="input-group">
<div class="input-group-addon" id="fb"><i class="fa fa-fw"></i></div>
<input type="text" class="form-control" title="Facebook-event (URL)"
placeholder="Facebook-event (URL)" th:field="*{facebookEvent}" />
<input type="text" class="form-control" title="Adress should start with 'http://' or 'https://'"
placeholder="Facebook-event (URL)" th:field="*{facebookEvent}" pattern="^https:\/\/.*|^http:\/\/.*"/>
</div>
</div>
</div>
<div class="col-sm-6">
<div class="input-group">
<div class="input-group-addon" id="gdocs"><i class="fa fa-fw"></i></div>
<input type="text" class="form-control" title="Google Doc/Form (URL)"
placeholder="Google Doc/Form (URL)" th:field="*{googleForm}" />
<input type="text" class="form-control" title="Adress should start with 'http://' or 'https://'"
placeholder="Google Doc/Form (URL)" th:field="*{googleForm}" pattern="^https:\/\/.*|^http:\/\/.*"/>
</div>
</div>
<div class="clear"></div>
Expand Down

0 comments on commit c360e3f

Please sign in to comment.