stuff
This commit is contained in:
parent
481719397c
commit
5ec060ee30
8 changed files with 54 additions and 24 deletions
|
@ -1,11 +1,14 @@
|
|||
<%- include('header.ejs') -%>
|
||||
<form enctype='multipart/form-data' method='POST' action='<%= route %>'>
|
||||
<h1>
|
||||
<%= title %>
|
||||
</h1>
|
||||
<div class='form-message'></div>
|
||||
<% for (let elem of data) { %>
|
||||
<span class='form-entry'> <span class='form-key'>
|
||||
<%= elem.label %>
|
||||
</span> <input type='<%= elem.type %>' name='<%= elem.name %>'></span>
|
||||
<% } %>
|
||||
<input type='Submit' name='Submit'>
|
||||
<input type='Submit' name='Submit'>
|
||||
</form>
|
||||
<%- include('footer.ejs') -%>
|
|
@ -1,4 +1,11 @@
|
|||
<div class='header'>
|
||||
<img src='/static/img/logo.svg'>
|
||||
<a href='/'>BiglyChat</a>
|
||||
<%if (username=='!nobody' ) { %>
|
||||
<div class="button"><a href="/client/login">Login</a></div>
|
||||
<% } else { %>
|
||||
<a href="/client/user?user=<%= username %>">
|
||||
<%= username %>
|
||||
</a>
|
||||
<% } %>
|
||||
</div>
|
|
@ -1,7 +1,12 @@
|
|||
<%- include('header.ejs') -%>
|
||||
<div class='area'>
|
||||
<h1>BiglyChat</h1>
|
||||
<p>A community for video editing</p>
|
||||
<p><b>Collab on videos... make creative animations... and more!</b></p>
|
||||
<h2>About</h2>
|
||||
<p><i>I am <a href='https://zenoverse.net/'>Onez</a>, a self-taught developer since the age of 12. Following the unexpected growth
|
||||
of <i>Video Bot Thing</i>, I made this as a home for the logo editing community. View the <a
|
||||
href='https://codeberg.org/onezDerv/bigly-chat'>source</a> if you want to contribute or make a
|
||||
fork.</i></p>
|
||||
<%if (username=='!nobody' ) { %>
|
||||
<div class="button"><a href="/client/register">Join</a></div>
|
||||
<% } %>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue