-
Notifications
You must be signed in to change notification settings - Fork 3
/
PopUp.html
32 lines (28 loc) · 1.2 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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css"
integrity="sha384-Vkoo8x4CGsO3+Hhxv8T/Q5PaXtkKtu6ug5TOeNV6gBiFeWPGFN9MuhOf23Q9Ifjh" crossorigin="anonymous" />
<link rel="stylesheet" href="/styles/PopUpStyles.css">
</head>
<body>
<div class="container">
<div class="row">
<div class="col-sm-10 offset-sm-1">
<h2 class="title text-center">Page Styler</h2>
<form>
<div class="form-group">
<textarea rows="7" type="text" class="form-control" id="cssInput" aria-describedby="CSS Input" placeholder="Enter CSS here"></textarea>
</div>
<div class="form-check">
<input type="checkbox" class="form-check-input" id="IsActive">
<label class="form-check-label" for="exampleCheck1">Active</label>
</div>
<button id="SaveButton" class="btn btn-primary">Save</button>
</form>
<script src="/scripts/PopUp.js"></script>
</div>
</div>
</div>
</body>
</html>