This repository was archived by the owner on May 28, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathedit-yg-info.html
More file actions
45 lines (43 loc) · 2.13 KB
/
edit-yg-info.html
File metadata and controls
45 lines (43 loc) · 2.13 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
---
title: Edit Profile
layout: default
permalink: /my-profile/edit-yg-info/
---
<div class="py-5 text-center">
<h2>Edit Your Profile</h2>
<p class="lead">Edit your personal information and select the YG services you frequently use</p>
</div>
<div class="col-md-12 my-3">
<h4 class="mb-3">YG Information</h4>
<div class="row">
<div class="col-md-4 mb-3">
<div class="list-group" id="list-tab" role="tablist">
<a class="list-group-item list-group-item-action active" id="list-home-list" data-toggle="list" href="#list-home" role="tab" aria-controls="home">Health Care Number</a>
<a class="list-group-item list-group-item-action" id="list-profile-list" data-toggle="list" href="#list-profile" role="tab" aria-controls="profile">Drivers License</a>
</div>
</div>
<div class="col-md-8">
<div class="tab-content" id="nav-tabContent">
<div class="tab-pane fade show active" id="list-home" role="tabpanel" aria-labelledby="list-home-list">
<h5>Health Care Number</h5>
<form>
<div class="form-group">
<input type="text" class="form-control" id="healthCareNumber" placeholder="Health Care #">
</div>
<button type="submit" class="btn btn-primary">Save</button>
</form>
</div>
<div class="tab-pane fade" id="list-profile" role="tabpanel" aria-labelledby="list-profile-list">
<h5>Drivers License</h5>
<form>
<div class="form-group">
<input type="text" class="form-control" id="driversLicense" placeholder="Drivers License #">
</div>
<button type="submit" class="btn btn-primary">Save</button>
</form>
</div>
</div>
</div>
</div>
</div>
</div>