1
0
Fork 0

div-tag removed: duplicate

This commit is contained in:
gschwab 2014-03-06 10:49:01 +01:00
parent 00f8a79a48
commit 1978b38368
1 changed files with 76 additions and 78 deletions

View File

@ -1,89 +1,87 @@
<script id="userProfileView.ejs" type="text/template"> <script id="userProfileView.ejs" type="text/template">
<div class="centralContent"> <ul class="thumbnails2">
<ul class="thumbnails2"> <div class="headerBar">
<div class="headerBar"> <a class="arangoHeader">
<a class="arangoHeader"> User Profile
User Profile </a>
</a> </div>
</div> </ul>
</ul> <div class="contentDiv" id="profileContent">
<div class="contentDiv" id="profileContent"> <table class="arangoDataTable contentTables">
<table class="arangoDataTable contentTables"> <tr>
<td class="pull-right">
<%=img%>
</td>
<td>
<div>
<div>USERNAME:</div>
<div><%=username%></div>
</div>
<div>
<div>NAME:</div>
<div><%=name%></div>
</div>
</td>
</tr>
</table>
</div>
<div id="editUserProfileModal" class="modal hide fade" tabindex="-1" role="dialog" aria-labelledby="myModalLabel"
aria-hidden="true" style="display:none">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
<a class="arangoHeader">Edit User Profile</a>
</div>
<div class="modal-body">
<table>
<tr> <tr>
<td class="pull-right"> <th>Username:</th>
<%=img%> <th id="editUsername"></th>
</td> </tr>
<td> <tr>
<div> <th>Name:</th>
<div>USERNAME:</div> <th><input type="text" id="editName" name="name" value="" placeholder="Name"/></th>
<div><%=username%></div> </tr>
</div> <tr>
<div> <th>Gravatar-Link:</th>
<div>NAME:</div> <th><input type="text" id="editUserProfileImg" name="img" value="" placeholder="Gravatar"/></th>
<div><%=name%></div>
</div>
</td>
</tr> </tr>
</table> </table>
</div> </div>
<div class="modal-footer">
<button class="button-close" data-dismiss="modal" aria-hidden="true">Close</button>
<button id="callEditUserPassword" class="button-danger pull-right">Change Password</button>
<button id="submitEditUserProfile" class="button-success pull-right">Save</button>
</div>
</div>
<div id="editUserProfileModal" class="modal hide fade" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" <div id="editUserPasswordModal" class="modal hide fade" tabindex="-1" role="dialog" aria-labelledby="myModalLabel"
aria-hidden="true" style="display:none"> aria-hidden="true" style="display:none">
<div class="modal-header"> <div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button> <button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
<a class="arangoHeader">Edit User Profile</a> <a class="arangoHeader">Edit User Password</a>
</div>
<div class="modal-body">
<table>
<tr>
<th>Username:</th>
<th id="editUsername"></th>
</tr>
<tr>
<th>Name:</th>
<th><input type="text" id="editName" name="name" value="" placeholder="Name"/></th>
</tr>
<tr>
<th>Gravatar-Link:</th>
<th><input type="text" id="editUserProfileImg" name="img" value="" placeholder="Gravatar"/></th>
</tr>
</table>
</div>
<div class="modal-footer">
<button class="button-close" data-dismiss="modal" aria-hidden="true">Close</button>
<button id="callEditUserPassword" class="button-danger pull-right">Change Password</button>
<button id="submitEditUserProfile" class="button-success pull-right">Save</button>
</div>
</div> </div>
<div id="editUserPasswordModal" class="modal hide fade" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" <div class="modal-body">
aria-hidden="true" style="display:none"> <table>
<div class="modal-header"> <tr>
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button> <th>Old Password:</th>
<a class="arangoHeader">Edit User Password</a> <th><input type="password" id="oldPassword" name="oldPassword" value="" placeholder="old password"/></th>
</div> </tr>
<tr>
<div class="modal-body"> <th>New Password:</th>
<table> <th><input type="password" id="newPassword" name="newPassword" value="" placeholder="new password"/></th>
<tr> </tr>
<th>Old Password:</th> <tr>
<th><input type="password" id="oldPassword" name="oldPassword" value="" placeholder="old password"/></th> <th>Confirm New Password:</th>
</tr> <th><input type="password" id="confirmPassword" name="confirmPassword" value="" placeholder="confirm password"/></th>
<tr> </tr>
<th>New Password:</th> </table>
<th><input type="password" id="newPassword" name="newPassword" value="" placeholder="new password"/></th> </div>
</tr> <div class="modal-footer">
<tr> <button class="button-close" data-dismiss="modal" aria-hidden="true">Close</button>
<th>Confirm New Password:</th> <button id="submitEditUserPassword" class="button-success pull-right">Save</button>
<th><input type="password" id="confirmPassword" name="confirmPassword" value="" placeholder="confirm password"/></th>
</tr>
</table>
</div>
<div class="modal-footer">
<button class="button-close" data-dismiss="modal" aria-hidden="true">Close</button>
<button id="submitEditUserPassword" class="button-success pull-right">Save</button>
</div>
</div> </div>
</div> </div>
</script> </script>