diff options
Diffstat (limited to 'web/NetUseAdminWeb/views/login.tt')
| -rw-r--r-- | web/NetUseAdminWeb/views/login.tt | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/web/NetUseAdminWeb/views/login.tt b/web/NetUseAdminWeb/views/login.tt new file mode 100644 index 0000000..2ea2c8b --- /dev/null +++ b/web/NetUseAdminWeb/views/login.tt @@ -0,0 +1,33 @@ +<!-- + NetUseMod is a program to moderate Usenet posts via web interface. + Copyright (C) 2024 Salahuddin <salahuddin@member.fsf.org> + + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program. If not, see <https://www.gnu.org/licenses/>. +--> + +<div id="page"> + <div id="content" align="center"> + <form action="<% request.uri_base %>/login" method="POST"> + <br /> + <label>UserName: </label> + <input type="text" name='user'> + <br /><br /> + <label>Password: </label> + <input type="password" name='pass'> + <br /><br /> + <input type='hidden' name='path' value='<% path %>'/> + <button type="submit">Login</button> + </form> + </div> +</div> |
