Skip to content

Commit

Permalink
Add button to Name textbox using input group
Browse files Browse the repository at this point in the history
  • Loading branch information
georgehemmings committed Aug 5, 2019
1 parent 25c0029 commit d93068b
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion world/wwwroot/client-jquery/contacts/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,12 @@ <h3>Add new Contact</h3>
</div>
<div class="form-group">
<label for="name">Full Name</label>
<input class="form-control" id="name" name="name" type="text" placeholder="Name">
<div class="input-group">
<input class="form-control" id="name" name="name" type="text" placeholder="Name">
<div class="input-group-append">
<button class="btn btn-outline-secondary" type="button">Button</button>
</div>
</div>
<small id="name-help" class="text-muted">Your first and last name</small>
</div>
<div class="form-group">
Expand Down

0 comments on commit d93068b

Please sign in to comment.