push
This commit is contained in:
parent
3d57a2974e
commit
4a3d20013d
@ -247,7 +247,7 @@ const initialFieldDef = {
|
||||
description: "",
|
||||
type: "text",
|
||||
value: "",
|
||||
example: "ssh.vaguly.com:22",
|
||||
example: "bash.legaragenumerique.fr:4444",
|
||||
readonly: false,
|
||||
suggestions(input) {
|
||||
return [];
|
||||
@ -270,7 +270,7 @@ const initialFieldDef = {
|
||||
}
|
||||
|
||||
if (addr.port <= 0) {
|
||||
throw new Error("Port must be specified");
|
||||
throw new Error("Le port doit être indiqué");
|
||||
}
|
||||
|
||||
return "Look like " + addr.type + " address";
|
||||
@ -288,7 +288,7 @@ const initialFieldDef = {
|
||||
},
|
||||
verify(d) {
|
||||
if (d.length <= 0) {
|
||||
throw new Error("Username must be specified");
|
||||
throw new Error("L'utilisateur doit être spécifié");
|
||||
}
|
||||
|
||||
if (d.length > MAX_USERNAME_LEN) {
|
||||
|
||||
@ -20,7 +20,7 @@
|
||||
<template>
|
||||
<div id="home">
|
||||
<header id="home-header">
|
||||
<h1 id="home-hd-title">Sshwifty</h1>
|
||||
<h1 id="home-hd-title">SSH Garage</h1>
|
||||
|
||||
<a id="home-hd-delay" href="javascript:;" @click="showDelayWindow">
|
||||
<span
|
||||
@ -68,7 +68,7 @@
|
||||
@updated="tabUpdated"
|
||||
>
|
||||
<div id="home-content-wrap">
|
||||
<h1>Hi, this is Sshwifty</h1>
|
||||
<h1>SSH du Garage</h1>
|
||||
|
||||
<p>
|
||||
An Open Source Web SSH Client that enables you to connect to SSH
|
||||
|
||||
@ -20,7 +20,7 @@
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8" />
|
||||
<title>Sshwifty Web SSH Client</title>
|
||||
<title>SSH Garage</title>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
||||
</head>
|
||||
<body>
|
||||
@ -41,9 +41,6 @@
|
||||
this one require JavaScript to run :)
|
||||
</p>
|
||||
</noscript>
|
||||
<p class="copy copy-first">
|
||||
Copyright © 2019-2023 Ni Rui <ranqus@gmail.com>
|
||||
</p>
|
||||
<p class="copy">
|
||||
<a href="https://github.com/nirui/sshwifty" target="blank">
|
||||
Source code
|
||||
@ -52,13 +49,14 @@
|
||||
<a href="/sshwifty/assets/DEPENDENCIES.md" target="blank">
|
||||
Third-party
|
||||
</a>
|
||||
|
||||
<a href="/sshwifty/assets/README.md" target="blank"> Readme </a>
|
||||
|
||||
<a href="/sshwifty/assets/LICENSE.md" target="blank"> License </a>
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
<footer>
|
||||
<div>
|
||||
<img src="https://www.legaragenumerique.fr/wp-content/uploads/2019/10/logo-web-garage_numerique.png" />
|
||||
</div>
|
||||
</footer>
|
||||
</html>
|
||||
|
||||
File diff suppressed because one or more lines are too long
|
Before Width: | Height: | Size: 1.1 KiB After Width: | Height: | Size: 12 KiB |
@ -25,7 +25,7 @@
|
||||
@display="$emit('display', $event)"
|
||||
>
|
||||
<div id="connect-frame">
|
||||
<h1 class="window-title">Establish connection with</h1>
|
||||
<h1 class="window-title">Connexion à</h1>
|
||||
|
||||
<slot v-if="inputting"></slot>
|
||||
|
||||
@ -56,24 +56,6 @@
|
||||
@clear-session="clearSessionKnown"
|
||||
></connect-known>
|
||||
|
||||
<div id="connect-warning">
|
||||
<span id="connect-warning-icon" class="icon icon-warning1"></span>
|
||||
<div id="connect-warning-msg">
|
||||
<p>
|
||||
<strong>An insecured service may steal your secrets.</strong>
|
||||
Always exam the safety of the service before using it.
|
||||
</p>
|
||||
|
||||
<p>
|
||||
Sshwifty is a free software, you can deploy it on your own trusted
|
||||
infrastructure.
|
||||
<a href="https://github.com/nirui/sshwifty" target="_blank"
|
||||
>Learn more</a
|
||||
>
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div v-if="busy" id="connect-busy-overlay"></div>
|
||||
</div>
|
||||
</window>
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user