mirror of https://github.com/abpframework/abp
				
				
				
			
			You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
					
					
						
							36 lines
						
					
					
						
							1.2 KiB
						
					
					
				
			
		
		
	
	
							36 lines
						
					
					
						
							1.2 KiB
						
					
					
				| @page
 | |
| @model Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.Demo.Pages.Components.FormsModel
 | |
| @{
 | |
|     ViewData["Title"] = "Forms";
 | |
| }
 | |
| 
 | |
| <h2>Forms</h2>
 | |
| 
 | |
| <p>Based on <a href="http://getbootstrap.com/docs/4.1/components/forms/" target="_blank"> Bootstrap form</a>.</p>
 | |
| 
 | |
| <h4># Example</h4>
 | |
| 
 | |
| <div class="demo-with-code">
 | |
|     <div class="demo-area">
 | |
|         <abp-form-group>
 | |
|             <abp-input type="text"/>
 | |
|         </abp-form-group>
 | |
|         <abp-form-group checkbox="true">
 | |
|             <input type="checkbox" class="form-check-input" id="exampleCheck1">
 | |
|             <label class="form-check-label" for="exampleCheck1">Check me out</label>
 | |
|         </abp-form-group>
 | |
|     </div>
 | |
|     <div class="code-area">
 | |
|         <pre>       
 | |
|         <abp-form-group>
 | |
|             <abp-input type="text"/>
 | |
|         </abp-form-group>
 | |
|         <abp-form-group checkbox="true">
 | |
|             <input type="checkbox" class="form-check-input" id="exampleCheck1">
 | |
|             <label class="form-check-label" for="exampleCheck1">Check me out</label>
 | |
|         </abp-form-group>
 | |
|         </pre>
 | |
|     </div>
 | |
| </div>
 | |
| 
 |