Compare commits
	
		
			1 Commits
		
	
	
		
			wal/front/
			...
			972d08a54d
		
	
	| Author | SHA1 | Date | |
|---|---|---|---|
| 972d08a54d | 
@ -25,7 +25,7 @@ dependencies {
 | 
				
			|||||||
	implementation("com.kohlschutter.junixsocket:junixsocket-core:2.9.0")
 | 
						implementation("com.kohlschutter.junixsocket:junixsocket-core:2.9.0")
 | 
				
			||||||
	// implementation("org.springframework.session:spring-session-jdbc")
 | 
						// implementation("org.springframework.session:spring-session-jdbc")
 | 
				
			||||||
	developmentOnly("org.springframework.boot:spring-boot-devtools")
 | 
						developmentOnly("org.springframework.boot:spring-boot-devtools")
 | 
				
			||||||
	developmentOnly("org.springframework.boot:spring-boot-docker-compose")
 | 
					  // developmentOnly("org.springframework.boot:spring-boot-docker-compose")
 | 
				
			||||||
	runtimeOnly("org.postgresql:postgresql")
 | 
						runtimeOnly("org.postgresql:postgresql")
 | 
				
			||||||
	testImplementation("org.springframework.boot:spring-boot-starter-test")
 | 
						testImplementation("org.springframework.boot:spring-boot-starter-test")
 | 
				
			||||||
	testImplementation("org.springframework.boot:spring-boot-testcontainers")
 | 
						testImplementation("org.springframework.boot:spring-boot-testcontainers")
 | 
				
			||||||
 | 
				
			|||||||
@ -86,12 +86,14 @@ window.addEventListener('hashchange', () => {
 | 
				
			|||||||
    </ul>
 | 
					    </ul>
 | 
				
			||||||
    </div>
 | 
					    </div>
 | 
				
			||||||
    <div class="page">
 | 
					    <div class="page">
 | 
				
			||||||
 | 
					      <div style=" margin:50px;">
 | 
				
			||||||
        <Suspense>
 | 
					        <Suspense>
 | 
				
			||||||
        
 | 
					        
 | 
				
			||||||
		<component :is="currentView" />
 | 
							<component :is="currentView" />
 | 
				
			||||||
        </Suspense>
 | 
					        </Suspense>
 | 
				
			||||||
      </div>
 | 
					      </div>
 | 
				
			||||||
    </div>
 | 
					    </div>
 | 
				
			||||||
 | 
					  </div>
 | 
				
			||||||
</template>
 | 
					</template>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
<style scoped>
 | 
					<style scoped>
 | 
				
			||||||
 | 
				
			|||||||
@ -55,7 +55,7 @@
 | 
				
			|||||||
</script>
 | 
					</script>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
<template style="background-color:rgba(255,255,255,0.05); border-radius:50px" >
 | 
					<template>
 | 
				
			||||||
      <div class='loginBox'>
 | 
					      <div class='loginBox'>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
        <div v-if="loginPage">
 | 
					        <div v-if="loginPage">
 | 
				
			||||||
@ -157,14 +157,31 @@
 | 
				
			|||||||
</template>
 | 
					</template>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
<style scoped>
 | 
					<style scoped>
 | 
				
			||||||
 | 
					.Home{
 | 
				
			||||||
 | 
					  position:absolute;
 | 
				
			||||||
 | 
					 	display: flex;
 | 
				
			||||||
 | 
					  z-index: 100;
 | 
				
			||||||
 | 
						padding: 8px 16px;
 | 
				
			||||||
 | 
						color:rgb(255, 255, 255);
 | 
				
			||||||
 | 
						text-decoration: none;
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					.Home:hover{
 | 
				
			||||||
 | 
					  width:40px;
 | 
				
			||||||
 | 
					  background-color: black;
 | 
				
			||||||
 | 
						border-radius:6px;
 | 
				
			||||||
 | 
						color:white;
 | 
				
			||||||
 | 
					  transform: translate(0px ,1px);
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
.loginBox {
 | 
					.loginBox {
 | 
				
			||||||
  background-color: rgb(24,24,24);
 | 
					  background-color: rgb(24,24,24);
 | 
				
			||||||
  width: 100%;
 | 
					  width: 400px;
 | 
				
			||||||
  height:100%;
 | 
					  display:flex;
 | 
				
			||||||
  justify-content: center;
 | 
					  justify-content: center;
 | 
				
			||||||
  padding: 10%;
 | 
					  padding: 40px;
 | 
				
			||||||
  border-radius: 5%;
 | 
					  border-radius: 20px;
 | 
				
			||||||
  box-shadow:0 5px 25px #000000;
 | 
					  box-shadow:0 5px 25px #000000;
 | 
				
			||||||
  
 | 
					  
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
@ -173,8 +190,9 @@
 | 
				
			|||||||
  width:100%;
 | 
					  width:100%;
 | 
				
			||||||
  display: flex;
 | 
					  display: flex;
 | 
				
			||||||
  flex-direction: column;
 | 
					  flex-direction: column;
 | 
				
			||||||
 | 
					  justify-content: center;
 | 
				
			||||||
  align-items:center;
 | 
					  align-items:center;
 | 
				
			||||||
  gap: 3%;
 | 
					  gap: 15px;
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@ -182,12 +200,12 @@
 | 
				
			|||||||
  
 | 
					  
 | 
				
			||||||
  width:100%;
 | 
					  width:100%;
 | 
				
			||||||
  border: none;
 | 
					  border: none;
 | 
				
			||||||
  margin-right: 12.5%;
 | 
					  margin-right: 50px;
 | 
				
			||||||
  padding-left: 2.5%;
 | 
					  padding-left: 10px;
 | 
				
			||||||
  padding-top:2.5%;
 | 
					  padding-top:10px;
 | 
				
			||||||
  padding-bottom:2.5%;
 | 
					  padding-bottom:10px;
 | 
				
			||||||
  outline:none;
 | 
					  outline:none;
 | 
				
			||||||
  border-radius: 10px;
 | 
					  border-radius: 4px;
 | 
				
			||||||
  font-size:1.35em;
 | 
					  font-size:1.35em;
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user