-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patherror.html
executable file
·74 lines (74 loc) · 2.53 KB
/
error.html
1
2
3
4
5
6
7
8
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
38
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
69
70
71
72
73
74
<html>
<head>
<table>
<tr>
<td width=779 colspan=8 valign=top>
<p
style="font-family:Calibri;color:#92D050;font-size:60.0pt"><b>Connex.us</b></p>
</td>
</tr>
<tr>
<td
width=130
valign=top>
<p><a
href="/manage"
style="font-family:Calibri;color:#2E75B6;font-size:16.0pt;text-decoration:none;">Manage</a></p>
</td>
<td
width=130
colspan=2
valign=top>
<p><a
href="/create"
style="font-family:Calibri;color:#D0CECE;font-size:16.0pt;text-decoration:none;">Create</a></p>
</td>
<td
width=130
valign=top>
<p><a
href="/viewallstreams"
style="font-family:Calibri;color:#2E75B6;font-size:16.0pt;text-decoration:none;">View</a></p>
</td>
<td
width=130
valign=top>
<p><a
href="/search"
style="font-family:Calibri;color:#2E75B6;font-size:16.0pt;text-decoration:none;">Search</a></p>
</td>
<td
width=130
colspan=2
valign=top>
<p><a
href="/trending"
style="font-family:Calibri;color:#2E75B6;font-size:16.0pt;text-decoration:none;">Trending</a></p>
</td>
<td
width=130
valign=top>
<p><a
href="/social"
style="font-family:Calibri;color:#2E75B6;font-size:16.0pt;text-decoration:none;">Social</a></p>
</td>
</tr>
</table>
</head>
{% if info == 'same_name'%}
<body>
<p style="font-family:Calibri;color:red;font-size:16.0pt">Error:you tried to create a new stream</p>
<p style="font-family:Calibri;color:red;font-size:16.0pt">whose name is the same as an existing stream</p>
<p style="font-family:Calibri;color:red;font-size:16.0pt">operation did not complete</p>
{% elif info == 'no_name' %}
<body>
<p style="font-family:Calibri;color:red;font-size:16.0pt">Error:you tried to create a new stream</p>
<p style="font-family:Calibri;color:red;font-size:16.0pt">But the name is empty</p>
<p style="font-family:Calibri;color:red;font-size:16.0pt">operation did not complete</p>
{% elif info =='wrong_email' %}
<body>
<p style="font-family:Calibri;color:red;font-size:16.0pt">Error:Wrong Email</p>
<p style="font-family:Calibri;color:red;font-size:16.0pt">operation did not complete</p>
{% endif %}
</body>
</html>