forked from hanc00l/wooyun_public
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
46 lines (43 loc) · 1.86 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
{% extends "base.html" %}
{% block content %}
<div class="jumbotron masthead">
<div class="row">
<div class="col-sm-8 col-xs-12 col-sm-offset-2">
<h2 class="text-center">乌云公开漏洞、知识库搜索 <small><small>漏洞/文章数:{{total_count_bugs}}/{{total_count_drops}}</small></small></h2>
<form class="form-horizontal" action="/search" method="get" name="login">
<div class="input-group">
<input type="text" class="form-control " id="keywords" name="keywords" placeholder="输入搜索关键词……">
<span class="input-group-btn">
<button class="btn btn-default btn-primary" type="submit"><span class="glyphicon glyphicon-search"></button>
</span>
</div><!-- /input-group -->
<br/>
<div class="form-group">
<div class="col-sm-8 col-sm-6">
<div class="radio-inline">
<label>
<input type="radio" name="content_search_by" id="by_bugs" value="by_bugs" checked>乌云公开漏洞
</label>
</div>
<div class="radio-inline">
<label>
<input type="radio" name="content_search_by" id="by_drops" value="by_drops">
乌云知识库
</label>
</div>
</div>
<div class="col-sm-4 col-xs-6">
<div class="checkbox">
<label>
<input type="checkbox" name="search_by_html" value="true"> 全文搜索
</label>
</div>
</div>
</div>
</form>
</div>
</div>
</div>
<div class="container projects">
</div>
{% end %}