Skip to content

Commit

Permalink
Remove References to ID Card (hyperledger-archives#2509)
Browse files Browse the repository at this point in the history
Updated identity issued to remove references to ID card
Updated create card to better describe what admin and participant cards are for

contributes to hyperledger/composer#2506

Signed-off-by: Caroline Church <[email protected]>
  • Loading branch information
cazfletch authored Nov 1, 2017
1 parent 52f4bc1 commit ade08f6
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ <h1>Identity Issued</h1>
<span>Use it yourself</span>
</ng-template>
<ng-template ngbPanelContent>
<p>Just add the ID card to your wallet to start using the new identity yourself</p>
<p>Just add the business network card to your wallet to start using the new identity yourself</p>
<div class="actions">
<button type="button" class="primary" (click)="addToWallet();">Add to wallet</button>
</div>
Expand All @@ -34,9 +34,9 @@ <h1>Identity Issued</h1>
<span>Send it to someone else (Playground)</span>
</ng-template>
<ng-template ngbPanelContent>
<p>Another Playground user can import the ID card to their wallet to start using the new identity</p>
<p>Another Playground user can import the business network card to their wallet to start using the new identity</p>
<div class="actions">
<button type="button" class="primary" (click)="export();">Export ID card</button>
<button type="button" class="primary" (click)="export();">Export Business Network Card</button>
</div>
</ng-template>
</ngb-panel>
Expand All @@ -49,7 +49,7 @@ <h1>Identity Issued</h1>
</ng-template>
<ng-template ngbPanelContent>
<p>A Composer command line user will need to enroll the new identity using the secret shown below</p>

<dl class="enrollment-credentials">
<dt>User ID</dt>
<dd>{{userID}}</dd>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ <h1>Create Business Network Card</h1>
<section class="profiles section">
<div class="description upper"><b>Provide security credentials</b></div>
<div>
<p>You must provide one of two types of information to create an ID card:</p>
<p>You must provide one of two types of credential to create a business network card:</p>
<credentials (credentials)="updateCredentials($event)"></credentials>
</div>
</section>
Expand All @@ -16,15 +16,17 @@ <h1>Create Business Network Card</h1>
<div class="file-types-list">
<div class="file-types-list-item">
<input type="radio" id="participantCard" name="participant-type" [checked]="true"
(change)="useParticipantCardType(true)">
(change)="useParticipantCardType(true)">
<label class="radio-label" for="participantCard"><h3>Participant Card</h3></label>
<div class="description"><p>A business network card that is bound to a participant</p></div>
<div class="description"><p>A business network card that can be used to connect a business
network.</p></div>
</div>
<div class="file-types-list-item">
<input type="radio" id="adminCard" name="participant-type"
(change)="useParticipantCardType(false)">
(change)="useParticipantCardType(false)">
<label class="radio-label" for="adminCard"><h3>Admin Card</h3></label>
<div class="description"><p>A business network card that is not bound to a participant.</p></div>
<div class="description"><p>A business network card that can be used to install and start
a business network.</p></div>
</div>
</div>
</div>
Expand Down

0 comments on commit ade08f6

Please sign in to comment.