forked from WolferTamer/passwords-frontend
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpopup_alt.html
64 lines (56 loc) · 1.35 KB
/
popup_alt.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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
<html>
<body>
<div class="container">
<h1>Passwords</h1>
<form id="passwordform" autocomplete="off">
<div class = "input-group">
<label for="website">Website: </label> </br>
<input type="text" id="website" name="website" placeholder="Enter Your Website"></br>
</div>
<input type="submit" id="submit">
</form>
<div>
<p id="user-out" style="display: none"></p>
</div>
<button id="addacc">Add Account</button>
<p style="display: none" id="outputdisplay"></p>
<script src="scripts/passwordHandler.js"></script>
</div>
</body>
</html>
<style>
body {
h1 {
color: rgb(0, 0, 0);
font-size: auto;
}
font-family: 'Times New Roman', Times, serif, sans-serif;
background-image: url('login2.jpg');
}
.container {
max-width: 400px;
margin: auto;
padding: 20px;
border: 1px solid #ccc;
border-radius: 5px;
}
.input-group{
margin-bottom: 15px;
font-size: 20px;
color: black;
}
input[type="submit"]{
background-color: #04AA6D; /* Green */
color: white;
text-align: center;
display: inline-block;
font-size: auto;
}
button{
background-color: #04AA6D; /* Green */
color: white;
text-align: center;
display: inline-block;
font-size: auto;
}
</style>