mirror of
https://github.com/abrendan/MicDropMessages.git
synced 2025-08-25 05:52:02 +02:00
V1.2! Updates visuals and new Dark Mode
This commit is contained in:
@@ -11,15 +11,15 @@
|
||||
<body onload = "onload()">
|
||||
<div id = "Main">
|
||||
<audio id = "Ding" src = "Ding.mp3"> </audio>
|
||||
<h1 id = "Title"> MicDropMessages V1.1 </h1>
|
||||
<h1 id = "Title"> MicDropMessages V1.2 </h1>
|
||||
<p>Welcome to MicDropMessages! This small webbased application allows you to chat with your friends anonymously! To start, enter your username and enter a chatroom.</p>
|
||||
<div id = "AccessPort">
|
||||
<label id = "NameLabel"> Username </label>
|
||||
<input id = "NameInput" type = "text">
|
||||
<input id = "NameInput" class="input" type = "text">
|
||||
<br><br>
|
||||
<label id = "IDLabel"> Chatroom </label>
|
||||
<input id = "IDInput" value = "Room1" type = "text">
|
||||
<input id = "ConnectButton" class = "Button" type = "submit" value = "Connect" onclick = "Connect()">
|
||||
<input id = "IDInput" class="input" value = "Room1" type = "text">
|
||||
<input id = "ConnectButton" class="button2" type = "submit" value = "Connect" onclick = "Connect()">
|
||||
</div>
|
||||
<h2 id = "RoomID"> Chatroom : None </h2>
|
||||
<div id = "Chat">
|
||||
@@ -34,11 +34,12 @@
|
||||
<p id = "Message8" class = "Message"> - </p>
|
||||
<p id = "Message9" class = "Message"> - </p>
|
||||
<label id = "MessageLabel"> Message </label>
|
||||
<input id = "ComposedMessage" type = "text">
|
||||
<input id = "SendMessage" onclick="Send()" value = "Send your message" class = "Button" type = "submit">
|
||||
<input id = "ComposedMessage" class="input" type = "text">
|
||||
<input id = "SendMessage" onclick="Send()" value = "Send your message" class="button2" type = "submit">
|
||||
</div>
|
||||
<p>Made by abrendan. Visit my website for more of my projects.</p>
|
||||
<a href='https://abrendan.dev/' target="_blank" class="sitebutton">abrendan.dev</a>
|
||||
<button id="darkModeToggle" onclick="toggleDarkMode()" class="button">Toggle Dark Mode</button>
|
||||
<button onclick=" window.open('http://www.abrendan.dev','_blank')" class="button">abrendan.dev</button>
|
||||
<br><br>
|
||||
</div>
|
||||
</body>
|
||||
|
Reference in New Issue
Block a user