mirror of
				https://github.com/MHSanaei/3x-ui.git
				synced 2025-10-27 18:32:52 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			19 lines
		
	
	
		
			No EOL
		
	
	
		
			845 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			No EOL
		
	
	
		
			845 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
| {{define "form/http"}}
 | |
| <a-form layout="inline">
 | |
|     <a-form-item>
 | |
|         <a-row>
 | |
|             <a-button type="primary" size="small" @click="inbound.settings.addAccount(new Inbound.SocksSettings.SocksAccount())">+</a-button>
 | |
|         </a-row>
 | |
|         <a-input-group v-for="(account, index) in inbound.settings.accounts">
 | |
|             <a-input style="width: 45%" v-model.trim="account.user"
 | |
|                 addon-before='{{ i18n "username" }}'></a-input>
 | |
|             <a-input style="width: 55%" v-model.trim="account.pass"
 | |
|                 addon-before='{{ i18n "password" }}'>
 | |
|                 <template slot="addonAfter">
 | |
|                     <a-button type="primary" size="small" @click="inbound.settings.delAccount(index)">-</a-button>
 | |
|                 </template>
 | |
|             </a-input>
 | |
|         </a-input-group>
 | |
|     </a-form-item>
 | |
| </a-form>
 | |
| {{end}} | 
