mirror of
https://git.hmsn.ink/call/client.git
synced 2026-03-19 15:54:58 +09:00
19 lines
578 B
HTML
19 lines
578 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>Title</title>
|
|
</head>
|
|
<body>
|
|
<div id="webrtc-controls">
|
|
<audio id="call" autoplay controls></audio>
|
|
<input type="text" id="peer-id-input" placeholder="상대방 ID 입력">
|
|
<button id="call-btn">전화걸기</button>
|
|
<button id="hangup-btn">끊기</button>
|
|
<button id="record-btn">녹음시작</button>
|
|
<button id="stop-record-btn">녹음중지</button>
|
|
<audio id="audio-playback" controls></audio>
|
|
</div>
|
|
</body>
|
|
<script type="module" src="/src/main.js"></script>
|
|
</html> |