forked from zulip/zulip-desktop
-
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.
UI: REconnect network page improved.
Fixes zulip#862. Center aligned the text and added a table to make points look better.
- Loading branch information
1 parent
93c3b81
commit b477e0d
Showing
1 changed file
with
32 additions
and
32 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,34 +1,34 @@ | ||
<!DOCTYPE html> | ||
<html lang="en" class="responsive desktop"> | ||
<head> | ||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> | ||
<meta name="viewport" content="width=device-width"> | ||
<title>Zulip - Network Troubleshooting</title> | ||
<link rel="stylesheet" href="css/network.css" type="text/css" media="screen"> | ||
</head> | ||
<body> | ||
<div class="container"> | ||
<div class="maingraphic"> | ||
<img src="img/zulip_network.png"> | ||
</div> | ||
<div id="content"> | ||
<div id="title">We can't connect to this organization</div> | ||
<div id="subtitle"> | ||
<ul> | ||
<li>This could be because</li> | ||
</ul> | ||
</div> | ||
<ul id="description"> | ||
<li>You're not online or your proxy is misconfigured.</li> | ||
<li>There is no Zulip organization hosted at this URL.</li> | ||
<li>This Zulip organization is temporarily unavailable.</li> | ||
<li>This Zulip organization has been moved or deleted.</li> | ||
</ul> | ||
<div id="buttons"> | ||
<div id="reconnect" class="button">Reconnect</div> | ||
<div id="settings" class="button">Settings</div> | ||
</div> | ||
</div> | ||
</div> | ||
</body> | ||
</html> | ||
<head> | ||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> | ||
<meta name="viewport" content="width=device-width"> | ||
<title>Zulip - Network Troubleshooting</title> | ||
<link rel="stylesheet" href="css/network.css" type="text/css" media="screen"> | ||
</head> | ||
<body> | ||
<div class="container"> | ||
<div class="maingraphic"> | ||
<img src="img/zulip_network.png"> | ||
</div> | ||
<div id="content"> | ||
<div id="title">We can't connect to this organization</div> | ||
<div id="subtitle"> | ||
<ul> | ||
<li>This could be because</li> | ||
</ul> | ||
</div> | ||
<ul id="description"> | ||
<li>You're not online or your proxy is misconfigured.</li> | ||
<li>There is no Zulip organization hosted at this URL.</li> | ||
<li>This Zulip organization is temporarily unavailable.</li> | ||
<li>This Zulip organization has been moved or deleted.</li> | ||
</ul> | ||
<div id="buttons"> | ||
<div id="reconnect" class="button">Reconnect</div> | ||
<div id="settings" class="button">Settings</div> | ||
</div> | ||
</div> | ||
</div> | ||
</body> | ||
</html> |