diff --git a/wowstash/forms.py b/wowstash/forms.py index 06511e8..69b88d3 100644 --- a/wowstash/forms.py +++ b/wowstash/forms.py @@ -23,7 +23,8 @@ class Delete(FlaskForm): class Restore(FlaskForm): seed = StringField('Seed Phrase', validators=[DataRequired()], render_kw={"placeholder": "25 word mnemonic seed phrase", "class": "form-control"}) + risks_accepted = BooleanField('I accept the risks:', validators=[DataRequired()], render_kw={"class": "form-control-span"}) def validate_seed(self, seed): if len(self.seed.data.split()) != 25: - raise ValidationError("Invalid seed provided; must be 25 word format") + raise ValidationError("Invalid seed provided; must be standard Wownero 25 word format") diff --git a/wowstash/templates/wallet/dashboard.html b/wowstash/templates/wallet/dashboard.html index 54dfaeb..b69a37c 100644 --- a/wowstash/templates/wallet/dashboard.html +++ b/wowstash/templates/wallet/dashboard.html @@ -154,6 +154,7 @@
You can and should delete your wallet from the server. Please ensure you have copied the mnemonic seed from the secrets above if there are still funds associated with the keys.
+I highly recommend making a new wallet on your own and transferring funds there to ensure only you have full ownership and visibility into the private keys / seed. Not your keys, not your crypto!