mirror of
				https://github.com/NginxProxyManager/nginx-proxy-manager.git
				synced 2025-10-30 23:33:34 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			14 lines
		
	
	
		
			688 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			688 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
| <div class="col-sm-3 col-md-3">
 | |
|     <div class="form-group">
 | |
|         <select name="directive[]" class="form-control custom-select" placeholder="http">
 | |
|             <option value="allow" <%- typeof directive == 'undefined' || directive === 'allow' ? 'selected' : '' %>>allow</option>
 | |
|             <option value="deny" <%- typeof directive !== 'undefined' && directive === 'deny' ? 'selected' : '' %>>deny</option>
 | |
|         </select>
 | |
|     </div>
 | |
| </div>
 | |
| <div class="col-sm-9 col-md-9">
 | |
|     <div class="form-group">
 | |
|         <input type="text" name="address[]" placeholder="IP / Subnet" class="form-control" value="<%- typeof address !== 'undefined' ? address : '' %>" value="">
 | |
|     </div>
 | |
| </div>
 |