comparison index.xhtml @ 3:5aa1bf7154b0

Add a simple PEP node viewer and editor.
author Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
date Sat, 22 Dec 2018 02:23:38 +0100
parents db033e5eabcb
children 5e97e1808a35
comparison
equal deleted inserted replaced
2:db033e5eabcb 3:5aa1bf7154b0
60 <label>Who can see your avatar? <select id="avatar-access"> 60 <label>Who can see your avatar? <select id="avatar-access">
61 <option value="open">Anyone (pick this if you use public groupchats)</option> 61 <option value="open">Anyone (pick this if you use public groupchats)</option>
62 <option value="presence">Only your contacts</option> 62 <option value="presence">Only your contacts</option>
63 </select></label> 63 </select></label>
64 </p> 64 </p>
65 <h2>PEP</h2>
66 <table>
67 <thead>
68 <tr><th>PEP node</th><th>Title</th><th>Description</th><th>Type</th><th>⚠️ Delete</th></tr>
69 </thead>
70 <tbody id="pep-table"/>
71 </table>
65 <h2>Dangerous zone</h2> 72 <h2>Dangerous zone</h2>
66 <p> 73 <p>
67 <button disabled="">Change my password</button> 74 <button disabled="">Change my password</button>
68 <button disabled="">⚠️ Delete my account</button> 75 <button disabled="">⚠️ Delete my account</button>
69 </p> 76 </p>
96 <script src="util.js"/> 103 <script src="util.js"/>
97 <script src="strophe.js"/> 104 <script src="strophe.js"/>
98 <script src="client.js"/> 105 <script src="client.js"/>
99 <script src="nickname.js"/> 106 <script src="nickname.js"/>
100 <script src="avatar.js"/> 107 <script src="avatar.js"/>
108 <script src="pep.js"/>
101 109
102 </body> 110 </body>
103 </html> 111 </html>