// Get the TinyDB component
TinyDB1.Initialize(this);
// Get the values from the input fields
var username = txtUsername.Text;
var password = txtPassword.Text;
var email = txtEmail.Text;
// Store the values in TinyDB with their respective tags
TinyDB1.StoreValue("username", username);
TinyDB1.StoreValue("password", password);
TinyDB1.StoreValue("email", email);
// Display a confirmation message to the user
Notifier1.ShowMessageDialog("Sign up successful!", "");