aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRitiek Malhotra <Ritiek@users.noreply.github.com>2017-05-07 07:44:58 +0530
committerGitHub <noreply@github.com>2017-05-07 07:44:58 +0530
commit98fd704f67da9c6be0bc271c4d39489f3111c6a5 (patch)
tree8c73dd8fcc300a902829d38ca336672390fd03ac
parent39356e8f347dd92a684f765954114e471e1f0239 (diff)
downloadmitmproxy-98fd704f67da9c6be0bc271c4d39489f3111c6a5.tar.gz
mitmproxy-98fd704f67da9c6be0bc271c4d39489f3111c6a5.tar.bz2
mitmproxy-98fd704f67da9c6be0bc271c4d39489f3111c6a5.zip
Add apple info from docs
-rw-r--r--mitmproxy/addons/onboardingapp/templates/index.html10
1 files changed, 6 insertions, 4 deletions
diff --git a/mitmproxy/addons/onboardingapp/templates/index.html b/mitmproxy/addons/onboardingapp/templates/index.html
index 7bd91cc2..8487a3cb 100644
--- a/mitmproxy/addons/onboardingapp/templates/index.html
+++ b/mitmproxy/addons/onboardingapp/templates/index.html
@@ -14,18 +14,20 @@ function changeTo(device) {
<li>A dialog window openes up</li>
<li>Change "Secure Socket Layer (SSL)" to "Always Trust"</li>
<li>Close the dialog window (and enter your password if prompted)</li>
- <li>Go to Settings > General > About > Certificate Trust Settings and enable full trust for your certificate</li>
+ <li>For iOS version 10.3 or up, you need to make sure mitmproxy is enabled in <br>
+ Certificate Trust Settings, you can check it by going to <br>
+ Settings > General > About > Certificate Trust Settings</li>
<li>Done!</li>
</ul>`;
}
else if (device == "windows") {
- var text = "hi";
+ var text = `<h3>Windows: How to install</h3>`;
}
else if (device == "android") {
- var text = "hi";
+ var text = `<h3>Android: How to install</h3>`;
}
else if (device == "asterisk") {
- var text = "hi";
+ var text = `<h3>others</h3>`;
}
document.getElementById("dynamic").innerHTML = text;
}