Skip to content

Commit

Permalink
removed fish
Browse files Browse the repository at this point in the history
  • Loading branch information
pr3y committed Jun 18, 2024
1 parent ea75476 commit a276a0d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions html/AsyncWebServer/evil_portal.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -266,10 +266,10 @@ String creds_GET() {
}

String ssid_GET() {
return getHtmlContents("<p>Set a new SSID for NEMO Portal:</p><form action='/postssid' id='login-form'><input name='ssid' class='input-field' type='text' placeholder='"+AP_name+"' required><button id=submitbtn class=submit-btn type=submit>Apply</button></div></form>");
return getHtmlContents("<p>Set a new SSID for EVIL Portal:</p><form action='/postssid' id='login-form'><input name='ssid' class='input-field' type='text' placeholder='"+AP_name+"' required><button id=submitbtn class=submit-btn type=submit>Apply</button></div></form>");
}
String ssid_POST() {
return getHtmlContents("NEMO Portal shutting down and restarting with SSID <b>" + AP_name + "</b>. Please reconnect.");
return getHtmlContents("EVIL Portal shutting down and restarting with SSID <b>" + AP_name + "</b>. Please reconnect.");
}

String index_GET() {
Expand Down
4 changes: 2 additions & 2 deletions html/WebServer/evil_portal.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -226,10 +226,10 @@ String creds_GET() {
}

String ssid_GET() {
return getHtmlContents("<p>Set a new SSID for NEMO Portal:</p><form action='/postssid' id='login-form'><input name='ssid' class='input-field' type='text' placeholder='"+AP_name+"' required><button id=submitbtn class=submit-btn type=submit>Apply</button></div></form>");
return getHtmlContents("<p>Set a new SSID for EVIL Portal:</p><form action='/postssid' id='login-form'><input name='ssid' class='input-field' type='text' placeholder='"+AP_name+"' required><button id=submitbtn class=submit-btn type=submit>Apply</button></div></form>");
}
String ssid_POST() {
return getHtmlContents("NEMO Portal shutting down and restarting with SSID <b>" + AP_name + "</b>. Please reconnect.");
return getHtmlContents("EVIL Portal shutting down and restarting with SSID <b>" + AP_name + "</b>. Please reconnect.");
}

String index_GET() {
Expand Down

0 comments on commit a276a0d

Please sign in to comment.