mirror of
				https://github.com/NginxProxyManager/nginx-proxy-manager.git
				synced 2025-11-03 17:13:33 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			14 lines
		
	
	
		
			662 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			662 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[]" class="form-control" value="<%- typeof address !== 'undefined' ? address : '' %>" value="">
 | 
						|
    </div>
 | 
						|
</div>
 |