Skip to content

Commit

Permalink
Fix contact page
Browse files Browse the repository at this point in the history
  • Loading branch information
IgorKowalczyk committed Apr 24, 2022
1 parent 82e8833 commit c793e15
Show file tree
Hide file tree
Showing 2 changed files with 6,566 additions and 459 deletions.
12 changes: 6 additions & 6 deletions dashboard/templates/contact.ejs
Original file line number Diff line number Diff line change
Expand Up @@ -44,15 +44,15 @@
<input type="hidden" name="name" value="<%= user.username %>#<%= user.discriminator %>">
<div class="wrap-input rs1-wrap-input">
<span class="label">Name</span>
<input disabled class="input" maxlenght="100" autocomplete="off" spellcheck="false" title="You can't change your nickname here!" type="text" name="name_invi" placeholder="Name" value="<%= user.username %>#<%= user.discriminator %>" />
<input disabled class="input" maxlength="100" autocomplete="off" spellcheck="false" title="You can't change your nickname here!" type="text" name="name_invi" placeholder="Name" value="<%= user.username %>#<%= user.discriminator %>" />
</div>
<div class="wrap-input rs1-wrap-input">
<span class="label">Email</span>
<input class="input" type="email" maxlenght="100" title="E-mail through which we can contact you" spellcheck="false" name="email" placeholder="wumpus@discord.com" required="true"/>
<input class="input" type="email" maxlength="100" title="E-mail through which we can contact you" spellcheck="false" name="email" placeholder="wumpus@discord.com" required="true"/>
</div>
<div class="wrap-input">
<span class="label">Message</span>
<textarea class="input" name="message" maxlenght="1000" title="Message we have to read <3"spellcheck="true" placeholder="Your looong message" required="true"></textarea>
<textarea class="input" name="message" maxlength="1000" title="Message we have to read <3"spellcheck="true" placeholder="Your looong message" required="true"></textarea>
</div>
<div class="wrap-input">
<span class="label">Why are you contacting us?</span>
Expand All @@ -69,15 +69,15 @@
<% } else { %>
<div class="wrap-input rs1-wrap-input noactive">
<span class="label">Name</span>
<input class="input" title="Please login to contact us!" maxlenght="100" autocomplete="off" spellcheck="false" type="text" name="tmp_name" placeholder="Wumpus#0001" disabled />
<input class="input" title="Please login to contact us!" maxlength="100" autocomplete="off" spellcheck="false" type="text" name="tmp_name" placeholder="Wumpus#0001" disabled />
</div>
<div class="wrap-input rs1-wrap-input noactive">
<span class="label">Email</span>
<input class="input" title="Please login to contact us!" maxlenght="100" autocomplete="off" spellcheck="false" type="email" name="tmp_email" placeholder="wumpus@discord.com" disabled />
<input class="input" title="Please login to contact us!" maxlength="100" autocomplete="off" spellcheck="false" type="email" name="tmp_email" placeholder="wumpus@discord.com" disabled />
</div>
<div class="wrap-input noactive">
<span class="label">Message</span>
<textarea class="input" title="Please login to contact us!" maxlenght="2000" autocomplete="off" spellcheck="true" name="tmp_message" placeholder="Your looong message" disabled></textarea>
<textarea class="input" title="Please login to contact us!" maxlength="2000" autocomplete="off" spellcheck="true" name="tmp_message" placeholder="Your looong message" disabled></textarea>
</div>
<div class="wrap-input noactive">
<span class="label">Why are you contacting us?</span>
Expand Down
Loading

0 comments on commit c793e15

Please sign in to comment.