-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
d97e566
commit fe2eca5
Showing
14 changed files
with
162 additions
and
140 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,42 +1,63 @@ | ||
<script setup lang="ts"> | ||
import { useRouter } from 'vue-router'; | ||
import { useRouter } from "vue-router"; | ||
const router = useRouter(); | ||
</script> | ||
|
||
<template> | ||
<div class="navbar bg-base-100"> | ||
<div class="navbar-start"> | ||
<div class="dropdown"> | ||
<div tabindex="0" role="button" class="btn btn-ghost btn-circle"> | ||
<svg xmlns="http://www.w3.org/2000/svg" class="h-5 w-5" fill="none" viewBox="0 0 24 24" | ||
stroke="currentColor"> | ||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M4 6h16M4 12h16M4 18h7" /> | ||
</svg> | ||
</div> | ||
<ul tabindex="0" class="menu menu-sm dropdown-content mt-3 z-[1] p-2 shadow bg-base-100 rounded-box w-52"> | ||
<li><router-link to="/">Home</router-link></li> | ||
<li> | ||
<router-link to="/settings">Settings</router-link> | ||
</li> | ||
<li><router-link to="/about">About</router-link></li> | ||
</ul> | ||
</div> | ||
</div> | ||
<div class="navbar-center"> | ||
<button class="btn btn-ghost text-xl" @click="router.push('/')"> | ||
Web of Trust | ||
</button> | ||
</div> | ||
<div class="navbar-end"> | ||
<router-link to="/search" class="px-2"> | ||
<svg xmlns="http://www.w3.org/2000/svg" class="h-5 w-5" fill="none" viewBox="0 0 24 24" | ||
stroke="currentColor"> | ||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" | ||
d="M21 21l-6-6m2-5a7 7 0 11-14 0 7 7 0 0114 0z" /> | ||
</svg> | ||
</router-link> | ||
<div class="navbar bg-base-100"> | ||
<div class="navbar-start"> | ||
<div class="dropdown"> | ||
<div tabindex="0" role="button" class="btn btn-ghost btn-circle"> | ||
<svg | ||
xmlns="http://www.w3.org/2000/svg" | ||
class="h-5 w-5" | ||
fill="none" | ||
viewBox="0 0 24 24" | ||
stroke="currentColor" | ||
> | ||
<path | ||
stroke-linecap="round" | ||
stroke-linejoin="round" | ||
stroke-width="2" | ||
d="M4 6h16M4 12h16M4 18h7" | ||
/> | ||
</svg> | ||
</div> | ||
<ul | ||
tabindex="0" | ||
class="menu menu-sm dropdown-content mt-3 z-[1] p-2 shadow bg-base-100 rounded-box w-52" | ||
> | ||
<li><router-link to="/">Home</router-link></li> | ||
<li> | ||
<router-link to="/settings">Settings</router-link> | ||
</li> | ||
<li><router-link to="/about">About</router-link></li> | ||
</ul> | ||
</div> | ||
</div> | ||
<div class="navbar-center"> | ||
<button class="btn btn-ghost text-xl" @click="router.push('/')"> | ||
Web of Trust | ||
</button> | ||
</div> | ||
<div class="navbar-end"> | ||
<router-link to="/search" class="px-2"> | ||
<svg | ||
xmlns="http://www.w3.org/2000/svg" | ||
class="h-5 w-5" | ||
fill="none" | ||
viewBox="0 0 24 24" | ||
stroke="currentColor" | ||
> | ||
<path | ||
stroke-linecap="round" | ||
stroke-linejoin="round" | ||
stroke-width="2" | ||
d="M21 21l-6-6m2-5a7 7 0 11-14 0 7 7 0 0114 0z" | ||
/> | ||
</svg> | ||
</router-link> | ||
</div> | ||
</template> | ||
</div> | ||
</template> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,26 +1,32 @@ | ||
<script setup lang="ts"> | ||
import NavBar from '../component/NavBar.vue'; | ||
import NavBar from "../component/NavBar.vue"; | ||
</script> | ||
|
||
<template> | ||
<NavBar></NavBar> | ||
<div class="container mx-auto mt-5"> | ||
<p> | ||
You can learn more about protecting your E-mails with GPG from the | ||
<a href="https://emailselfdefense.fsf.org/en/" target="_blank" class="link">Free Software Foundation</a>. | ||
</p> | ||
<p> | ||
This hApp is a distributed solution for section #5. Rather than | ||
needing to send your public keys to a centralized server, you can | ||
distribute them using Holochain. | ||
</p> | ||
<NavBar></NavBar> | ||
<div class="container mx-auto mt-5"> | ||
<p> | ||
You can learn more about protecting your E-mails with GPG from the | ||
<a | ||
href="https://emailselfdefense.fsf.org/en/" | ||
target="_blank" | ||
class="link" | ||
>Free Software Foundation</a | ||
>. | ||
</p> | ||
<p> | ||
This hApp is a distributed solution for section #5. Rather than needing to | ||
send your public keys to a centralized server, you can distribute them | ||
using Holochain. | ||
</p> | ||
|
||
<br /> | ||
<p> | ||
You can get the | ||
<a href="https://github.com/ThetaSinner/hWOT" target="_blank" class="link">source code</a> | ||
for this app to verify its behavior. | ||
</p> | ||
</div> | ||
</template> | ||
<br /> | ||
<p> | ||
You can get the | ||
<a href="https://github.com/ThetaSinner/hWOT" target="_blank" class="link" | ||
>source code</a | ||
> | ||
for this app to verify its behavior. | ||
</p> | ||
</div> | ||
</template> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,15 @@ | ||
<script setup lang="ts"> | ||
import MyKeys from "../trusted/trusted/MyKeys.vue"; | ||
import KeyCollections from "../trusted/trusted/KeyCollections.vue"; | ||
import NavBar from '../component/NavBar.vue'; | ||
import NavBar from "../component/NavBar.vue"; | ||
</script> | ||
|
||
<template> | ||
<NavBar></NavBar> | ||
<div class="container mx-auto mt-5"> | ||
<MyKeys></MyKeys> | ||
<div class="mt-5"> | ||
<KeyCollections></KeyCollections> | ||
</div> | ||
<NavBar></NavBar> | ||
<div class="container mx-auto mt-5"> | ||
<MyKeys></MyKeys> | ||
<div class="mt-5"> | ||
<KeyCollections></KeyCollections> | ||
</div> | ||
</div> | ||
</template> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,11 @@ | ||
<script setup lang="ts"> | ||
import SearchKeys from "../trusted/trusted/SearchKeys.vue"; | ||
import NavBar from '../component/NavBar.vue'; | ||
import NavBar from "../component/NavBar.vue"; | ||
</script> | ||
|
||
<template> | ||
<NavBar></NavBar> | ||
<div class="container mx-auto mt-5"> | ||
<SearchKeys></SearchKeys> | ||
</div> | ||
<NavBar></NavBar> | ||
<div class="container mx-auto mt-5"> | ||
<SearchKeys></SearchKeys> | ||
</div> | ||
</template> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,11 @@ | ||
<script setup lang="ts"> | ||
import SettingsEditor from "../component/SettingsEditor.vue"; | ||
import NavBar from '../component/NavBar.vue'; | ||
import NavBar from "../component/NavBar.vue"; | ||
</script> | ||
|
||
<template> | ||
<NavBar></NavBar> | ||
<div class="container mx-auto w-1/2 mt-5"> | ||
<SettingsEditor></SettingsEditor> | ||
</div> | ||
<NavBar></NavBar> | ||
<div class="container mx-auto w-1/2 mt-5"> | ||
<SettingsEditor></SettingsEditor> | ||
</div> | ||
</template> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,13 @@ | ||
import { createRouter, createWebHistory } from 'vue-router' | ||
|
||
import { createRouter, createWebHistory } from "vue-router"; | ||
|
||
const router = createRouter({ | ||
history: createWebHistory(), | ||
routes: [ | ||
{ path: '/', component: () => import('./pages/HomePage.vue') }, | ||
{ path: '/search', component: () => import('./pages/SearchPage.vue') }, | ||
{ path: '/settings', component: () => import('./pages/SettingsPage.vue') }, | ||
{ path: '/about', component: () => import('./pages/AboutPage.vue') }, | ||
] | ||
history: createWebHistory(), | ||
routes: [ | ||
{ path: "/", component: () => import("./pages/HomePage.vue") }, | ||
{ path: "/search", component: () => import("./pages/SearchPage.vue") }, | ||
{ path: "/settings", component: () => import("./pages/SettingsPage.vue") }, | ||
{ path: "/about", component: () => import("./pages/AboutPage.vue") }, | ||
], | ||
}); | ||
|
||
export default router | ||
export default router; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.