Mercurial Hosting > chat
diff src/account.html.luan @ 60:3521166513b3
finish invite
author | Franklin Schmidt <fschmidt@gmail.com> |
---|---|
date | Tue, 04 Mar 2025 20:31:00 -0700 |
parents | 8270106644db |
children | d4d154b404f8 |
line wrap: on
line diff
--- a/src/account.html.luan Tue Mar 04 08:22:45 2025 -0700 +++ b/src/account.html.luan Tue Mar 04 20:31:00 2025 -0700 @@ -157,8 +157,8 @@ <input type=text name=username placeholder="<%=html_encode(user.email)%>"><br> </p> <div buttons> - <button type=button cancel onclick="closeModal(this)">Cancel</button> - <button type=submit go>Save</button> + <button type=button onclick="closeModal(this)">Cancel</button> + <button type=submit>Save</button> </div> </form> </dialog> @@ -181,8 +181,8 @@ </label> </p> <div buttons> - <button type=button cancel onclick="closeModal(this)">Cancel</button> - <button type=submit go>Save</button> + <button type=button onclick="closeModal(this)">Cancel</button> + <button type=submit>Save</button> </div> </form> </dialog> @@ -195,8 +195,8 @@ <span note>Leave blank for no voice URL</span> </p> <div buttons> - <button type=button cancel onclick="closeModal(this)">Cancel</button> - <button type=submit go>Save</button> + <button type=button onclick="closeModal(this)">Cancel</button> + <button type=submit>Save</button> </div> </form> </dialog> @@ -204,8 +204,8 @@ <h2>Delete Account</h2> <p>Are you sure that you want to delete your account?</p> <div buttons> - <button cancel onclick="closeModal(this)">Cancel</button> - <button go onclick="doDeleteUser(this)">Delete</button> + <button onclick="closeModal(this)">Cancel</button> + <button onclick="doDeleteUser(this)">Delete</button> </div> </dialog> <script> init(); </script>