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 --> <!-- #enddocregion checkout-form-1 -->
<div> <div>
<label>Name</label> <label for="name">
<input type="text" formControlName="name"> Name
</label>
<input id="name" type="text" formControlName="name">
</div> </div>
<div> <div>
<label>Address</label> <label for="address">
<input type="text" formControlName="address"> Address
</label>
<input id="address" type="text" formControlName="address">
</div> </div>
<button class="button" type="submit">Purchase</button> <button class="button" type="submit">Purchase</button>
<!-- #docregion checkout-form-1 --> <!-- #docregion checkout-form-1 -->
</form> </form>