<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<meta http-equiv="X-UA-Compatible" content="ie=edge"> | |
<title>Document</title> | |
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" | |
crossorigin="anonymous"> | |
</head> | |
<body class="container" style="padding: 20px"> | |
<div class="row"> | |
<h3>Crawler</h3> | |
<div class="col-md-12"> | |
<form action="/crawl" method="POST"> | |
<div class="form-group"> | |
<label for="url">Url</label> | |
<input type="text" name="url" class="form-control"> | |
</div> | |
<div class="form-group"> | |
<label for="cssSelector">Css seciciler [birden fazla alan icin ' , ' kullanin]</label> | |
<input type="text" name="cssSelector" class="form-control"> | |
</div> | |
<div class="form-group"> | |
<label for="output">Ciktilar [birden fazla alan icin ' , ' kullanin]</label> | |
<input type="text" name="output" class="form-control"> | |
</div> | |
<button type="submit" class="btn btn-success"> Gonder</button> | |
</div> | |
</form> | |
</div> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment