docs: change to explicit label type in getting-started form (#31213)

PR Close #31213
This commit is contained in:
Jonathan Pool 2019-06-22 14:59:00 -04:00 committed by Miško Hevery
parent a5f9a86520
commit 9ef9bfe76b
1 changed files with 9 additions and 5 deletions

View File

@ -16,16 +16,20 @@
<!-- #enddocregion checkout-form-1 -->
<div>
<label>Name</label>
<input type="text" formControlName="name">
<label for="name">
Name
</label>
<input id="name" type="text" formControlName="name">
</div>
<div>
<label>Address</label>
<input type="text" formControlName="address">
<label for="address">
Address
</label>
<input id="address" type="text" formControlName="address">
</div>
<button class="button" type="submit">Purchase</button>
<!-- #docregion checkout-form-1 -->
</form>