<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>ELAB Part Search Engine - User editor</title> <script src="https://code.jquery.com/jquery-3.2.1.min.js" integrity="sha256-hwg4gsxgFZhOsEEamdOYGBf13FyQuiTwlAQgxVSNgt4=" crossorigin="anonymous"></script> <link href="https://fonts.googleapis.com/css?family=Roboto:300,400" rel="stylesheet"> <link rel="stylesheet" type="text/css" href="{{ baseURL }}/static/style.css"> <script src="https://use.fontawesome.com/2fef7be393.js"></script> <script type="text/javascript" src="{{ baseURL }}/static/common.js"></script> <script type="text/javascript" src="{{ baseURL }}/static/userEditorScript.js"></script> </head> <body> <h1>USER EDITOR</h1> <p>Get in! Get out! Get your fresh users here! <a href=".">back to parts</a></p> <table id="results" class="results-locations"> <tr> <th>ID</th> <th>Username</th> </tr> {% for user in users %} <tr onclick="init_User_edit({{user['id']}}, '{{user['username']}}');"> <td>{{user['id']}}</td> <td>{{user['username']}}</td> </tr> {% endfor %} </table> <div class="bottom-spacer"></div> <div class="shadow" onclick="overlay_out()"></div> <div class="overlay"> <h2>User Details</h2> <table id="details"> <tr><td>Adding a new user</td></tr> <tr><td>Name and password for new user<br />Example: "noob"</td></tr> <tr><td><p></p><input type="text" name="user-name-input" id="user-name-input" placeholder="Name" class="pinfo-input nothidden"/></td></tr> <tr><td><p></p><input type="password" name="user-password-input" id="user-password-input" placeholder="Password" class="pinfo-input nothidden"/></td></tr> </table> <div class="round-button-left"><a href="#" id="save-button"><i class="fa fa-check" aria-hidden="true"></i></a></div> <div class="round-button"><a href="#" id="delete-button"><i class="fa fa-trash" aria-hidden="true"></i></a></div> <div class="small-square-button"><a href="#" onclick="overlay_out()"><i class="fa fa-times" aria-hidden="true"></i></a></div> </div> <div class="round-floating-button"><a href="#" onclick="init_User_edit(-1, '', 0)"><i class="fa fa-plus" aria-hidden="true"></i></a></div> </body> </html>