diff --git a/web/settings/password-change-modal.js b/web/settings/password-change-modal.js
--- a/web/settings/password-change-modal.js
+++ b/web/settings/password-change-modal.js
@@ -74,7 +74,11 @@
 
     const { inputDisabled } = this.props;
     return (
-      <Modal name="Edit account" onClose={this.props.clearModal} size="large">
+      <Modal
+        name="Change Password"
+        onClose={this.props.clearModal}
+        size="large"
+      >
         <div className={css['modal-body']}>
           <form method="POST">
             <div>
@@ -129,7 +133,7 @@
                   onClick={this.onSubmit}
                   disabled={inputDisabled}
                 >
-                  Update Account
+                  Change Password
                 </Button>
                 {errorMsg}
               </div>