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.
		
		
		
		
		
			
		
			
				
					
					
						
							33 lines
						
					
					
						
							968 B
						
					
					
				
			
		
		
	
	
							33 lines
						
					
					
						
							968 B
						
					
					
				| {{template "base/head" .}}
 | |
| 
 | |
| <div class="user link-account">
 | |
| 	<div class="ui middle very relaxed page grid">
 | |
| 		<div class="column">
 | |
| 
 | |
| 			<div class="ui tabular menu">
 | |
| 				<!-- TODO handle .ShowRegistrationButton once other login bugs are fixed -->
 | |
| 				<div class="item {{if not .user_exists}}active{{end}}"
 | |
| 					data-tab="auth-link-signup-tab">
 | |
| 					{{.i18n.Tr "auth.oauth_signup_tab"}}
 | |
| 				</div>
 | |
| 				<div class="item {{if .user_exists}}active{{end}}"
 | |
| 					data-tab="auth-link-signin-tab">
 | |
| 					{{.i18n.Tr "auth.oauth_signin_tab"}}
 | |
| 				</div>
 | |
| 			</div>
 | |
| 			
 | |
| 			<div class="ui tab {{if not .user_exists}}active{{end}}"
 | |
| 				data-tab="auth-link-signup-tab">
 | |
| 				{{template "user/auth/signup_inner" .}}
 | |
| 			</div>
 | |
| 			<div class="ui tab {{if .user_exists}}active{{end}}"
 | |
| 				data-tab="auth-link-signin-tab">
 | |
| 				<div class="ui user signin container icon">
 | |
| 					{{template "user/auth/signin_inner" .}}
 | |
| 				</div>
 | |
| 			</div>
 | |
| 		</div>
 | |
| 	</div>
 | |
| </div>
 | |
| 
 | |
| {{template "base/footer" .}}
 | |
| 
 |