forked from OpenIdentityPlatform/OpenIG
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathThrottlingControl.html
More file actions
22 lines (22 loc) · 1.41 KB
/
ThrottlingControl.html
File metadata and controls
22 lines (22 loc) · 1.41 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{{! Copyright 2016 ForgeRock AS.
Portions copyright 2025 3A Systems LLC.
License terms: https://forgerock.org/cddlv1-0/ }}
<div class="form-horizontal">
<label class="control-label col-xs-2 col-sm-3">{{t "templates.routes.parts.throttling.lblAllow"}}</label>
<div class="col-xs-10 col-sm-9">
<div class="form-group col-md-3 col-lg-3">
<input type="number" class="form-control" name="numberOfRequests" value="{{requests}}" min="{{minNumber}}" max="{{maxNumber}}" data-validator="{{validator}}" data-validator-event="keyup blur" autofocus>
<span class="error form-control-feedback"><i class="fa validation-icon"></i></span>
</div>
<div class="form-group col-xs-4 col-sm-4 col-lg-3">
<label class="control-label col-xs-12">{{t "templates.routes.parts.throttling.lblPer"}}</label>
</div>
<div class="form-group col-xs-4 col-sm-4 col-md-3 col-lg-3">
<input type="number" class="form-control" name="durationValue" value="{{duration}}" min="{{minNumber}}" max="{{maxNumber}}" data-validator="{{validator}}" data-validator-event="keyup blur">
<span class="error form-control-feedback"><i class="fa validation-icon"></i></span>
</div>
<div class="col-xs-5 col-sm-5 col-md-4 col-lg-3">
<select class="form-control generic-selectize selectized" name="durationRange"></select>
</div>
</div>
</div>