diff --git a/src/main.rs b/src/main.rs index 5311a42..d29a2c9 100644 --- a/src/main.rs +++ b/src/main.rs @@ -267,6 +267,9 @@ fn main() { .lock() .unwrap(); + println!("Authenticator has not yet been linked. Before continuing with finalization, please take the time to write down your revocation code: {}", account.revocation_code); + tui::pause(); + debug!("attempting link finalization"); print!("Enter SMS code: "); let sms_code = tui::prompt(); @@ -302,6 +305,8 @@ fn main() { } } + println!("Authenticator has been finalized. Please actually write down your revocation code: {}", account.revocation_code); + return; } else if let Some(import_matches) = matches.subcommand_matches("import") { for file_path in import_matches.values_of("files").unwrap() {