Make API key a password, fix #6

This commit is contained in:
Niek van der Maas 2023-03-06 10:00:45 +01:00
parent a9de117fc6
commit c2180589ac
1 changed files with 5 additions and 2 deletions

View File

@ -28,7 +28,7 @@
}} }}
> >
<p class="control is-expanded"> <p class="control is-expanded">
<input aria-label="OpenAI API key" type="text" class="input {!apiKey ? 'is-danger' : ''}" value={apiKey} /> <input aria-label="OpenAI API key" type="password" class="input {!apiKey ? 'is-danger' : ''}" value={apiKey} />
</p> </p>
<p class="control"> <p class="control">
<button class="button is-info" type="submit">Save</button> <button class="button is-info" type="submit">Save</button>
@ -36,7 +36,10 @@
</form> </form>
{#if !apiKey} {#if !apiKey}
<p class="help is-danger">Please enter your OpenAI API key above to use ChatGPT-web</p> <p class="help is-danger">
Please enter your <a href="https://platform.openai.com/account/api-key">OpenAI API key</a> above to use ChatGPT-web.
It is required to use ChatGPT-web.
</p>
{/if} {/if}
</div> </div>
</article> </article>