register uptade

This commit is contained in:
tokmak0 2022-08-26 20:27:39 +03:00 committed by GitHub
parent a469c4775f
commit 62eed51c6a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 7 additions and 6 deletions

View File

@ -3,25 +3,26 @@
<%- include("extra/meta", {title: "Register!" }) %>
<link rel="stylesheet" href="/css/login.css" />
<body style="text-align: center;">
<%- include("extra/navbar") %>
<h1 style="color: #4d18e6;">Register</h1>
<h1 class="title">Register</h1>
<form action="/register" method="post">
<input type="text" name="username" placeholder="Username" id="username" required>
<input type="text" name="username" placeholder="Username" class="input" required>
<input type="password" name="password" placeholder="Password" id="password" required>
<input type="password" name="password" placeholder="Password" class="input" required>
<input type="text" name="avatar" placeholder="Avatar URL" id="avatar">
<input type="text" name="avatar" placeholder="Avatar URL" class="input">
<input type="submit" value="Register">
<input type="submit" class="btn-primary" style="width:100%;" value="Register">
</form>
</body>
</html>
</html>