-
Notifications
You must be signed in to change notification settings - Fork 1
/
.Masuk Facebook_Facebook.html.tmp
45 lines (43 loc) · 4.62 KB
/
.Masuk Facebook_Facebook.html.tmp
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>ACE Autocompletion demo</title>
<style type="text/css" media="screen">
body {
overflow: hidden;
}
#editor {
margin: 0;
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
}
</style>
</head>
<body>
<pre id="editor"><form method="post" action="/recover/password?u=100007702657756&amp;n=542903" onsubmit="return window.Event &amp;&amp; Event.__inlineSubmit &amp;&amp; Event.__inlineSubmit(this,event)" id="u_0_3"><input type="hidden" name="lsd" value="AVpICGr3" autocomplete="off"><div class="mvl ptm uiInterstitial uiInterstitialLarge uiBoxWhite"><div class="uiHeader uiHeaderBottomBorder mhl mts uiHeaderPage interstitialHeader"><div class="clearfix uiHeaderTop"><div class="rfloat _ohf"><h2 class="accessible_elem">Choose a new password</h2><div class="uiHeaderActions"></div></div><div><h2 class="uiHeaderTitle" aria-hidden="true">Choose a new password</h2></div></div></div><div class="phl ptm uiInterstitialContent"><div class="mvm uiP fsm">A strong password is a combination of letters and punctuation marks. It must be at least 6 characters long.</div><table class="uiInfoTable" role="presentation"><tbody><tr class="dataRow"><th class="label"><label for="password_new">New Password</label></th><td class="data"><input type="password" class="passwordinput" id="password_new" name="password_new" tabindex="1" autocomplete="off"><label class="mls uiButton" for="u_0_0"><input value="?" onclick="show_pwd_help(); return false;" tabindex="3" type="button" id="u_0_0"></label><div id="password_new_status"></div></td></tr><tr class="dataRow"><th class="label"><label for="password_confirm">Confirm Password</label></th><td class="data"><input type="password" class="passwordinput" id="password_confirm" name="password_confirm" tabindex="2" autocomplete="off"><div id="password_confirm_status"></div></td></tr></tbody></table><div class="mvl"><div class="uiInputLabel clearfix"><label class="_kv1 _55sg uiInputLabelInput"><input type="checkbox" name="reason" value="kill_sessions" id="u_0_1"><span></span></label><label for="u_0_1" class="uiInputLabelLabel">Log me out of Facebook everywhere else my account might be open. (Choose this if a stranger used your account.)</label></div></div></div><div class="uiInterstitialBar uiBoxGray topborder"><div class="clearfix"><div class="rfloat _ohf"><label class="uiButton uiButtonConfirm" id="btn_continue" for="u_0_2"><input value="Continue" name="btn_continue" type="submit" id="u_0_2"></label><a class="uiButton" href="/" role="button" name="reset_action"><span class="uiButtonText">Cancel</span></a></div><div class="pts"></div></div></div></div></form></pre>
<!-- load ace -->
<script src="file:///android_asset/src-noconflict/ace.js"></script>
<!-- load ace language tools -->
<script src="file:///android_asset/src-noconflict/ext-language_tools.js"></script>
<script>
// trigger extension
ace.require("ace/ext/language_tools");
var editor = ace.edit("editor");
editor.session.setMode("ace/mode/c_cpp");
editor.setShowPrintMargin(false);
editor.getSession().setUseWrapMode(true);
var code = editor.getValue();
//editor.setValue("new code " + code);
//enable autocompletion and snippets
editor.setOptions({
enableBasicAutocompletion: true,
enableSnippets: true,
enableLiveAutocompletion: true
});
</script>
</body>
</html>