blob: d4e51227eef6e3a16fe9d8ed582f05d7e176cdac (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
<!DOCTYPE html>
<html>
<head>
<title><%= title %></title>
<link rel='stylesheet' href='/stylesheets/style.css' />
</head>
<body>
<center>
<h1><%= title %></h1>
<p>Select user</p>
<% dgeusers.forEach( function(dgeuser) { %>
<p><a href='listFlows/<%= dgeuser %>/flows/shared'><%= dgeuser %></a></p>
<% }); %>
</center>
</body>
</html>
|