Mercurial Hosting > chat
comparison 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 |
comparison
equal
deleted
inserted
replaced
59:8270106644db | 60:3521166513b3 |
---|---|
155 <p> | 155 <p> |
156 <label>Username</label><br> | 156 <label>Username</label><br> |
157 <input type=text name=username placeholder="<%=html_encode(user.email)%>"><br> | 157 <input type=text name=username placeholder="<%=html_encode(user.email)%>"><br> |
158 </p> | 158 </p> |
159 <div buttons> | 159 <div buttons> |
160 <button type=button cancel onclick="closeModal(this)">Cancel</button> | 160 <button type=button onclick="closeModal(this)">Cancel</button> |
161 <button type=submit go>Save</button> | 161 <button type=submit>Save</button> |
162 </div> | 162 </div> |
163 </form> | 163 </form> |
164 </dialog> | 164 </dialog> |
165 <dialog edit_notify> | 165 <dialog edit_notify> |
166 <h2>Edit Notification</h2> | 166 <h2>Edit Notification</h2> |
179 <input type=radio name=multi_notify value=true> | 179 <input type=radio name=multi_notify value=true> |
180 Notify for all messages | 180 Notify for all messages |
181 </label> | 181 </label> |
182 </p> | 182 </p> |
183 <div buttons> | 183 <div buttons> |
184 <button type=button cancel onclick="closeModal(this)">Cancel</button> | 184 <button type=button onclick="closeModal(this)">Cancel</button> |
185 <button type=submit go>Save</button> | 185 <button type=submit>Save</button> |
186 </div> | 186 </div> |
187 </form> | 187 </form> |
188 </dialog> | 188 </dialog> |
189 <dialog edit_voice> | 189 <dialog edit_voice> |
190 <h2>Edit Voice URL</h2> | 190 <h2>Edit Voice URL</h2> |
193 <label>URL for receiving voice calls</label><br> | 193 <label>URL for receiving voice calls</label><br> |
194 <input type=url name=voice><br> | 194 <input type=url name=voice><br> |
195 <span note>Leave blank for no voice URL</span> | 195 <span note>Leave blank for no voice URL</span> |
196 </p> | 196 </p> |
197 <div buttons> | 197 <div buttons> |
198 <button type=button cancel onclick="closeModal(this)">Cancel</button> | 198 <button type=button onclick="closeModal(this)">Cancel</button> |
199 <button type=submit go>Save</button> | 199 <button type=submit>Save</button> |
200 </div> | 200 </div> |
201 </form> | 201 </form> |
202 </dialog> | 202 </dialog> |
203 <dialog delete_user> | 203 <dialog delete_user> |
204 <h2>Delete Account</h2> | 204 <h2>Delete Account</h2> |
205 <p>Are you sure that you want to delete your account?</p> | 205 <p>Are you sure that you want to delete your account?</p> |
206 <div buttons> | 206 <div buttons> |
207 <button cancel onclick="closeModal(this)">Cancel</button> | 207 <button onclick="closeModal(this)">Cancel</button> |
208 <button go onclick="doDeleteUser(this)">Delete</button> | 208 <button onclick="doDeleteUser(this)">Delete</button> |
209 </div> | 209 </div> |
210 </dialog> | 210 </dialog> |
211 <script> init(); </script> | 211 <script> init(); </script> |
212 <!-- ID = <%=user.id%> --> | 212 <!-- ID = <%=user.id%> --> |
213 </body> | 213 </body> |