Added placeholder text and fields for verify and broadcast pages

This commit is contained in:
Darren Nelsen 2017-07-11 16:38:38 -04:00
parent e9881777b2
commit 8abeb5eb8e
4 changed files with 22 additions and 5 deletions

View File

@ -38,7 +38,7 @@ export class InsightApp {
this.pages = [
{ title: 'Blocks', component: BlocksPage },
{ title: 'Broadcast Transaction', component: BroadcastTxPage },
{ title: 'Verify Message', component: VerifyMessagePage },
{ title: 'Verify Signed Message', component: VerifyMessagePage },
{ title: 'Node Status', component: NodeStatusPage }
];
}

View File

@ -8,5 +8,18 @@
</ion-header>
<ion-content padding>
<h1>Broadcast Transaction</h1>
<ion-list>
<ion-item>
<p>This form can be used to broadcast a raw transaction in hex format over the Bitcoin network.</p>
</ion-item>
<ion-item>
<ion-label floating>Raw transaction data</ion-label>
<ion-input type="text"></ion-input>
</ion-item>
<ion-item>
<button ion-button outline>Send transaction</button>
</ion-item>
</ion-list>
</ion-content>

View File

@ -8,9 +8,13 @@
</ion-header>
<ion-content padding>
<h1>Verify Signed Message</h1>
<ion-list>
<ion-item>
<p>Bitcoin comes with a way of signing arbitrary messages.</p>
<p>This form can be used to verify that a message comes from a specific Bitcoin address.</p>
</ion-item>
<ion-item>
<ion-label floating>Address</ion-label>
<ion-input type="text"></ion-input>

View File

@ -12,6 +12,6 @@ export class VerifyMessagePage {
constructor(nav: NavController) {
this.nav = nav;
this.title = 'Verify Message';
this.title = 'Verify Signed Message';
}
}