mirror of
https://github.com/pa11y/pa11y-dashboard.git
synced 2025-09-25 14:51:28 +00:00
75 lines
2.3 KiB
HTML
75 lines
2.3 KiB
HTML
|
|
{{#content "title"}}
|
|
Add a new URL
|
|
{{/content}}
|
|
|
|
<form role="form" class="col-md-12" action="/new" method="post" data-test="new-url-form">
|
|
|
|
<div class="legend">
|
|
<h1 class="h2 crunch-top">Add a new URL</h1>
|
|
</div>
|
|
|
|
{{#error}}
|
|
<div class="col-md-12 clearfix" data-test="error">
|
|
<div class="alert alert-danger">
|
|
<strong>Oh my gosh!</strong>
|
|
<p>{{.}}</p>
|
|
</div>
|
|
</div>
|
|
{{/error}}
|
|
|
|
<div class="form-group clearfix">
|
|
<div class="row">
|
|
<div class="col-md-8 col-sm-8 col-xs-10">
|
|
<label class="control-label" for="new-task-name">Name</label>
|
|
<input class="form-control" id="new-task-name" type="text" placeholder="E.g. My Home Page" name="name" value="{{task.name}}"/>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="form-group clearfix">
|
|
<div class="row">
|
|
<div class="col-md-8 col-sm-8 col-xs-10">
|
|
<label class="control-label" for="new-task-url">URL</label>
|
|
<input class="form-control" id="new-task-url" type="url" placeholder="E.g. http://mysite.com/" name="url" value="{{task.url}}"/>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="form-group clearfix">
|
|
<div class="row">
|
|
<div class="col-md-4 col-sm-4 col-xs-6">
|
|
<label class="control-label" for="new-task-standard">Standard</label>
|
|
<select data-role="new-task-select" class="form-control" id="new-task-standard" name="standard">
|
|
{{#standards}}
|
|
<option {{#selected}}selected{{/selected}}>{{title}}</option>
|
|
{{/standards}}
|
|
</select>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<p class="control-label"><b>Ignore these rules</b> <a target="_blank" href="https://github.com/nature/pa11y/wiki/HTML-CodeSniffer-Rules">(full list of rules here)</a></p>
|
|
|
|
<div class="standards-lists">
|
|
{{#standards}}
|
|
<div data-role="standards-list" data-attr="{{title}}" class="form-group">
|
|
<p class="control-label rules-list-title ruled"><b>{{title}} Rules</b></p>
|
|
<ul class="list-unstyled">
|
|
{{#rules}}
|
|
<li>
|
|
<input class="pull-left" id="{{name}}" type="checkbox" name="ignore[]" value="{{name}}" {{#ignored}}checked{{/ignored}}/>
|
|
<label for="{{name}}" title="{{description}}" data-role="rules-tooltip" class="checkbox">
|
|
{{name}}
|
|
</label>
|
|
</li>
|
|
{{/rules}}
|
|
</ul>
|
|
</div>
|
|
{{/standards}}
|
|
</div>
|
|
|
|
<button type="submit" class="btn btn-success">Add URL <span class="glyphicon glyphicon-plus"></span></button>
|
|
|
|
</form>
|