forked from trent_larson/crowd-funder-for-time-pwa
show more redeemed info & action on the invites, refactor onboarding instructions
This commit is contained in:
@@ -1,8 +1,8 @@
|
||||
<!-- similar to ContactNameDialog -->
|
||||
<!-- similar to UserNameDialog -->
|
||||
<template>
|
||||
<div v-if="visible" class="dialog-overlay">
|
||||
<div class="dialog">
|
||||
<h1 class="text-xl font-bold text-center mb-4">Inviter's Name</h1>
|
||||
<h1 class="text-xl font-bold text-center mb-4">Contact Name</h1>
|
||||
Note that their name is only stored on this device.
|
||||
<input
|
||||
type="text"
|
||||
@@ -37,7 +37,7 @@
|
||||
import { Vue, Component } from "vue-facing-decorator";
|
||||
|
||||
@Component
|
||||
export default class UserNameDialog extends Vue {
|
||||
export default class ContactNameDialog extends Vue {
|
||||
callback: (name?: string) => void = () => {};
|
||||
newText = "";
|
||||
visible = false;
|
||||
|
||||
@@ -3,9 +3,10 @@
|
||||
<div class="dialog">
|
||||
<h1 class="text-xl font-bold text-center mb-4">Invitation & Notes</h1>
|
||||
|
||||
These are optional notes for your use, to make comments for to recall
|
||||
later when redeemed by someone. These notes are sent to the server. If you
|
||||
want to store your own way, the invitation ID is: {{ inviteIdentifier }}
|
||||
These are optional notes for your use; they are comments to help you
|
||||
recall who it is when they accept it. These notes are sent to the server.
|
||||
If you want to store your own way, the invitation ID is:
|
||||
{{ inviteIdentifier }}
|
||||
<input
|
||||
type="text"
|
||||
placeholder="Notes"
|
||||
|
||||
Reference in New Issue
Block a user