Skip to content

Commit d34fb38

Browse files
authored
Create profile.component.html
1 parent f7ca7bd commit d34fb38

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

app/user/profile.component.html

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
<form autocomplete="off" novalidate>
2+
<div class="form-group">
3+
<label for="firstName">First Name:</label>
4+
<input id="firstName" type="text" class="form-control" placeholder="First Name..." />
5+
</div>
6+
<div class="form-group">
7+
<label for="lastName">Last Name:</label>
8+
<input id="lastName" type="text" class="form-control" placeholder="Last Name..." />
9+
</div>
10+
11+
<button type="submit" class="btn btn-primary">Save</button>
12+
<button type="button" class="btn btn-default">Cancel</button>
13+
</form>

0 commit comments

Comments
 (0)