This repository has been archived on 2023-05-12. You can view files and clone it, but cannot push or open issues or pull requests.
media-host/views/pages/rename-acc.ejs
2023-05-12 00:32:13 -04:00

27 lines
772 B
Text

<!DOCTYPE html>
<html>
<head>
<title>change username of account - <%- config["meta"]["name"] %></title>
<%- include("../partial/html-head")%>
</head>
<body>
<%- include("../partial/header") %>
<div class="modal">
<% if (config.alert) { %>
<div class="err"><p><%-config.alert%></p></div>
<% } %>
<% if (typeof err == "string") { %>
<div class="err">
<p><%= err %></p>
</div>
<% } %>
<h2 class="nm">Rename Account</h2>
<p>What would you like to rename your account?</p>
<form method="post">
<input name="username" value="<%= username %>">
<input type="submit" value="Rename">
</form>
</div>
<%- include("../partial/footer") %>
</body>
</html>