File tree Expand file tree Collapse file tree 1 file changed +41
-0
lines changed Expand file tree Collapse file tree 1 file changed +41
-0
lines changed Original file line number Diff line number Diff line change 1+ <template >
2+   <div  class =" join-section"  >
3+     <h1  class =" view-title"  >Register and Join</h1 >
4+     <div  class =" form"  ></div >
5+   </div >
6+ </template >
7+ 
8+ <script >
9+ //  import { useRoute, useRouter } from 'vue-router'
10+ //  import { AuthStore } from '@/composables/stores/auth'
11+ //  import { inject } from 'vue'
12+ 
13+ export  default  {
14+   name:  ' Join'  , 
15+   setup () { 
16+     //  const $auth = inject(AuthStore) 
17+     //  const $route = useRoute() 
18+     //  const $router = useRouter() 
19+     //  $auth.confirmRegistration($route.params.username, $route.params.token) 
20+     // .finally(() => $router.push('/')) 
21+ 
22+     return  { } 
23+   } 
24+ } 
25+  </script >
26+ 
27+ <style  lang="scss">
28+ .join  {
29+   main  #public-content  { grid-template-areas  : ' header header'   ' main main'   ' sidebar sidebar'  ; } 
30+   .join-section  { 
31+     grid-area  : main; 
32+     .view-title  { 
33+       color  : $secondary-font-color ; 
34+       font-size  : $font-size-xl ; 
35+       font-weight  : 600 ; 
36+       text-transform  : none ; 
37+     } 
38+     .form  { margin  : rem 0  1rem  ; } 
39+   } 
40+ } 
41+  </style >
    
 
   
 
     
   
   
          
     
  
    
     
 
    
      
     
 
     
    You can’t perform that action at this time.
  
 
    
  
     
    
      
        
     
 
       
      
     
   
 
    
    
  
 
  
 
     
    
0 commit comments