You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

52 lines
1.4 KiB

6 months ago
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>simplesipsdk</title>
</head>
<body>
6 months ago
<script src="simplesipsdk.js"></script>
<script src="keypad.js"></script>
<link rel="stylesheet" href="keypad_style.css" />
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon" />
<style>
#painelChamadas {
display: flex;
flex-direction: column;
justify-content: start;
align-items: start;
gap: 20px;
margin-right: 30px;
color: white;
}
#painelAgentes {
display: flex;
flex-direction: column;
justify-content: start;
align-items: start;
margin-right: 30px;
gap: 20px;
color: white;
}
body {
background-color: white;
}
</style>
<div id="painelChamadas">
<h3>Painel de Controle de Chamadas</h3>
<button id="home">Tela home principal</button>
<button id="outgoingcall">Tela outgoingcall</button>
<button id="incall">Tela inCall</button>
<button id="incomingcall">Tela incomingcall</button>
</div>
<div id="painelAgentes">
<h3>Painel de Controle de Agentes</h3>
<button id="online">Agente online</button>
<button id="busy">Agente ocupado</button>
<button id="away">Agente ausente</button>
</div>
</body>
</html>