mirror of
https://github.com/lucaspalomodevelop/Party.git
synced 2026-03-14 08:34:34 +00:00
30 lines
1.2 KiB
HTML
30 lines
1.2 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="de">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<link rel="stylesheet" href="{{ url_for('static', filename='../static/css/style.css') }}">
|
|
<title>Chat</title>
|
|
</head>
|
|
<body>
|
|
<center>
|
|
<h1>Chat</h1>
|
|
<iframe id="ifr" src="/message" width="800" height="450" frameBorder="0"></iframe>
|
|
<div id="userNameEntryDiv">
|
|
<input type="text" placeholder="Username..." id="userNameEntry">
|
|
<button id="chatUsernameButton" onclick="join_chat()">Join chat</button>
|
|
</div>
|
|
<form class="modal-content animate" action="http://127.0.0.1:5000/chat" method="POST">
|
|
<div class="container">
|
|
<input type="text" placeholder="Hallo Welt" name="message" required>
|
|
<button type="submit">
|
|
➤
|
|
</button>
|
|
</div>
|
|
</form>
|
|
</center>
|
|
<script src="{{url_for('static', filename='js/chat.js')}}"></script>
|
|
</body>
|
|
</html>
|