doT had a security vulnerability and ejs has even fewer dependencies: https://www.npmjs.com/advisories/798
16 lines
428 B
HTML
16 lines
428 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Peer Call</title>
|
|
<%- include('./_header.html') %>
|
|
</head>
|
|
<body class="call">
|
|
<input type="hidden" id="baseUrl" value="<%= baseUrl %>">
|
|
<input type="hidden" id="callId" value="<%= callId %>">
|
|
<input type="hidden" id="iceServers" value='<%- JSON.stringify(iceServers) %>'>
|
|
<div id="container"></div>
|
|
|
|
<script src="<%= baseUrl + '/static/index.js' %>"></script>
|
|
</body>
|
|
</html>
|