2021-07-20 15:45:51 -07:00
|
|
|
<!doctype html>
|
|
|
|
<html>
|
2023-11-09 19:11:11 -05:00
|
|
|
<head>
|
|
|
|
<style>
|
|
|
|
html,
|
|
|
|
body,
|
|
|
|
iframe {
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
border: 0;
|
|
|
|
overflow: hidden;
|
|
|
|
font-family: sans-serif;
|
|
|
|
}
|
|
|
|
body {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
}
|
|
|
|
iframe#main {
|
|
|
|
height: calc(100% - 36px);
|
|
|
|
}
|
|
|
|
div#info {
|
|
|
|
margin: 8px;
|
|
|
|
}
|
|
|
|
form {
|
|
|
|
display: inline;
|
|
|
|
}
|
|
|
|
button {
|
|
|
|
font-weight: bold;
|
|
|
|
font-size: 15px;
|
|
|
|
}
|
|
|
|
</style>
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<div id="info">
|
|
|
|
Log in to any site(s) that you want to be part of the crawl profile using
|
|
|
|
the embedded browser below. When done, click
|
|
|
|
<form action="/createProfile" method="post">
|
|
|
|
<button type="submit">Create Profile</button>
|
|
|
|
</form>
|
|
|
|
</div>
|
|
|
|
<iframe id="main" src="$DEVTOOLS_SRC"></iframe>
|
|
|
|
</body>
|
2021-07-20 15:45:51 -07:00
|
|
|
</html>
|