mirror of https://github.com/CIRCL/lookyloo
17 lines
578 B
HTML
17 lines
578 B
HTML
{% extends "main.html" %}
|
|
{% block title %}Scrape{% endblock %}
|
|
|
|
{% block content %}
|
|
<div class="container">
|
|
<h1>Scrape a page</h1>
|
|
|
|
<form class="form-inline" role="form" action="scrap" method=post>
|
|
<div class="form-group">
|
|
URL to scrap: <input type="text" class="form-control" name="url" id=url placeholder="URL to scrap">
|
|
Depth: <input type="text" class="form-control" name="depth" id=depth value=1 placeholder="Depth">
|
|
</div>
|
|
<button type="submit" class="btn btn-default">Scrap</button>
|
|
</form>
|
|
</div>
|
|
{% endblock %}
|