+page.svelte 4.63 KB
Newer Older
1
2
3
4
<script>
	import { goto } from '$app/navigation';
	import { WEBUI_API_BASE_URL } from '$lib/constants';
	import { config, user } from '$lib/stores';
Timothy J. Baek's avatar
Timothy J. Baek committed
5
	import { onMount } from 'svelte';
6
7
	import toast from 'svelte-french-toast';

Timothy J. Baek's avatar
Timothy J. Baek committed
8
	let loaded = false;
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
	let mode = 'signin';

	let name = '';
	let email = '';
	let password = '';

	const signInHandler = async () => {
		const res = await fetch(`${WEBUI_API_BASE_URL}/auths/signin`, {
			method: 'POST',
			headers: {
				'Content-Type': 'application/json'
			},
			body: JSON.stringify({
				email: email,
				password: password
			})
		})
			.then(async (res) => {
				if (!res.ok) throw await res.json();
				return res.json();
			})
			.catch((error) => {
				console.log(error);
				toast.error(error.detail);
				return null;
			});

		if (res) {
			console.log(res);
38
			toast.success(`You're now logged in.`);
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
			localStorage.token = res.token;
			await user.set(res);
			goto('/');
		}
	};

	const signUpHandler = async () => {
		const res = await fetch(`${WEBUI_API_BASE_URL}/auths/signup`, {
			method: 'POST',
			headers: {
				'Content-Type': 'application/json'
			},
			body: JSON.stringify({
				name: name,
				email: email,
				password: password
			})
		})
			.then(async (res) => {
				if (!res.ok) throw await res.json();
				return res.json();
			})
			.catch((error) => {
				console.log(error);
				toast.error(error.detail);
				return null;
			});

		if (res) {
			console.log(res);
69
			toast.success(`Account creation successful."`);
70
71
72
73
74
75
			localStorage.token = res.token;
			await user.set(res);
			goto('/');
		}
	};

Timothy J. Baek's avatar
Timothy J. Baek committed
76
77
78
79
80
81
	onMount(async () => {
		if ($config === null || !$config.auth || ($config.auth && $user !== undefined)) {
			await goto('/');
		}
		loaded = true;
	});
82
83
</script>

Timothy J. Baek's avatar
Timothy J. Baek committed
84
{#if loaded && $config && $config.auth}
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
	<div class="fixed m-10 z-50">
		<div class="flex space-x-2">
			<div class=" self-center">
				<img src="/ollama.png" class=" w-8" />
			</div>
		</div>
	</div>

	<div class=" bg-white min-h-screen w-full flex justify-center font-mona">
		<div class="hidden lg:flex lg:flex-1 px-10 md:px-16 w-full bg-yellow-50 justify-center">
			<div class=" my-auto pb-16 text-left">
				<div>
					<div class=" font-bold text-yellow-600 text-4xl">
						Get up and running with <br />large language models, locally.
					</div>

					<div class="mt-2 text-yellow-600 text-xl">
						Run Llama 2, Code Llama, and other models. Customize and create your own.
					</div>
				</div>
			</div>
		</div>

		<div class="w-full max-w-xl px-10 md:px-16 bg-white min-h-screen w-full flex flex-col">
			<div class=" my-auto pb-10 w-full">
				<form
					class=" flex flex-col justify-center"
					on:submit|preventDefault={() => {
						if (mode === 'signin') {
							signInHandler();
						} else {
							signUpHandler();
						}
					}}
				>
					<div class=" text-2xl md:text-3xl font-semibold">
						{mode === 'signin' ? 'Sign in' : 'Sign up'} to Ollama Web UI
					</div>

					<hr class="my-8" />

					<div class="flex flex-col space-y-4">
						{#if mode === 'signup'}
							<div>
								<div class=" text-sm font-bold text-left mb-2">Name</div>
								<input
									bind:value={name}
									type="text"
									class=" border px-5 py-4 rounded-2xl w-full text-sm"
									autocomplete="name"
									required
								/>
							</div>
						{/if}

						<div>
							<div class=" text-sm font-bold text-left mb-2">Email</div>
							<input
								bind:value={email}
								type="email"
								class=" border px-5 py-4 rounded-2xl w-full text-sm"
								autocomplete="email"
								required
							/>
						</div>

						<div>
							<div class=" text-sm font-bold text-left mb-2">Password</div>
							<input
								bind:value={password}
								type="password"
								class=" border px-5 py-4 rounded-2xl w-full text-sm"
								autocomplete="current-password"
								required
							/>
						</div>
					</div>

					<div class="mt-8">
						<button
							class=" bg-gray-900 hover:bg-gray-800 w-full rounded-full text-white font-semibold text-sm py-5 transition"
							type="submit"
						>
							{mode === 'signin' ? 'Sign In' : 'Create Account'}
						</button>

						<div class=" mt-4 text-sm text-center">
							{mode === 'signin' ? `Don't have an account?` : `Already have an account?`}

							<button
								class=" font-medium underline"
								type="button"
								on:click={() => {
									if (mode === 'signin') {
										mode = 'signup';
									} else {
										mode = 'signin';
									}
								}}
							>
								{mode === 'signin' ? `Sign up` : `Sign In`}
							</button>
						</div>
					</div>
				</form>
			</div>
		</div>
	</div>
{/if}
Timothy J. Baek's avatar
Timothy J. Baek committed
194
195
196
197
198
199

<style>
	.font-mona {
		font-family: 'Mona Sans';
	}
</style>