-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpopup.html
42 lines (33 loc) · 1 KB
/
popup.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
<!doctype html>
<html>
<head>
<title>AutoPwd Uniandes Popup</title>
<style>
body {
min-width: 357px;
overflow-x: hidden;
}
img {
margin: 5px;
border: 2px solid black;
vertical-align: middle;
width: 75px;
height: 75px;
}
</style>
<label>Usuario: <input type="text" id="usr"/></label><br />
<label>Contraseña: <input type="password" id="pwd" /></label><br />
<label>Correo Alterno: </label><input type="text" id="mail" /></label><br />
<button id="btnCambiar">Guardar Información</button><button id="btnExe">Ejecutar</button>
<!--
- JavaScript and HTML must be in separate files: see our Content Security
- Policy documentation[1] for details and explanation.
-
- [1]: http://developer.chrome.com/extensions/contentSecurityPolicy.html
-->
<script src="jquery.js"></script>
<script src="popup.js"></script>
</head>
<body>
</body>
</html>