-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathservertext.h
82 lines (70 loc) · 2.5 KB
/
servertext.h
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
75
76
77
78
79
80
81
82
#ifndef servertext_h
#define servertext_h
const char *html_root = "<!DOCKTYPE html>"
"<head>"
"<meta http-equiv=\"refresh\" content=\"60\">"
"<h1 align=\"center\"> Master Smart Plug 1 </h1>"
"</head>"
"<body>"
"<form align=\"center\" action = \"/connect_wifi\" method=\"POST\">"
"<input align=\"center\" type =\"submit\" value=\"Connect to WiFi\">"
"</form>"
"</body>";
const char *html_root_conn = "<!DOCTYPE html>"
"<head>"
"<meta http-equiv=\"refresh\" content=\"60\">"
"<h1 align=\"center\"> Master Smart Plug 1 </h1>"
"</head>"
"<body>"
"<h3 align=\"center\"> WiFi Connected </h3>"
"<form align=\"center\" action = \"/connect_wifi\" method=\"POST\">"
"<input align=\"center\" type =\"submit\" value=\"Connect to Other WiFi\">"
"</form>"
"</br>"
"<form align=\"center\" action = \"/disconnect_wifi\" method=\"POST\">"
"<input align=\"center\" type =\"submit\" value=\"Disconnect WiFi\">"
"</form>"
"</body>";
const char *html_connect_wifi = "<!DOCTYPE html>"
"<head>"
"<h1 align=\"center\"> Master Smart Plug 1 </h1>"
"</head>"
"<body>"
"<h3 align=\"center\"> Enter WiFi Login Credentials </h3>"
"<form align=\"center\" action = \"/wifi_login\" method=\"POST\">"
"<input align=\"center\" type =\"text\" name=\"ssid\" required=\"required\" placeholder=\"SSID\">"
"</br>"
"</br>"
"<input align=\"center\" type =\"password\" name=\"pass\" placeholder=\"Password\">"
"</br>"
"</br>"
"<input align=\"center\" type =\"submit\" value=\"Connect\">"
"</br>"
"</form>"
"</br>"
"<form align=\"center\" action = \"/\" method=\"POST\">"
"<input align=\"center\" type =\"submit\" value=\"Home\">"
"</form>"
"</head>";
const char *html_connect_wifi_tryagain = "<!DOCTYPE html>"
"<head>"
"<h1 align=\"center\">Master Smart Plug 1 </h1>"
"</head>"
"<body>"
"<h3 align=\"center\"> Couldn't Connect to WiFi, try again </h3>"
"<form align=\"center\" action = \" wifi_login\" method=\"POST\">"
"<input align=\"center\" type =\"text\" name=\"ssid\" required=\"required\" placeholder=\"SSID\">"
"</br>"
"</br>"
"<input align=\"center\" type =\"password\" name=\"pass\" placeholder=\"Password\">"
"</br>"
"</br>"
"<input align=\"center\" type =\"submit\" value=\"Connect\">"
"</br>"
"</form>"
"</br>"
"<form align=\"center\" action = \"/\" method=\"POST\">"
"<input align=\"center\" type =\"submit\" value=\"Home\">"
"</form>"
"</head>";
#endif