-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathinput.html
More file actions
94 lines (82 loc) · 3.84 KB
/
Copy pathinput.html
File metadata and controls
94 lines (82 loc) · 3.84 KB
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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
<!DOCTYPE html>
<html>
<form onsubmit="return false">
<head>
<script src="script.js"></script>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="header">
<div class="topnav">
<img class="logo unhover" src="icons/logo.png">
<h2>ExclusiFilms</h2>
</div>
</div>
<div class="backGround">
<div class="h1">
<h1>Subscription Registration</h1>
</div>
<div class="mainBox">
<form>
<div>
<label for="textBoxName">Name: </label>
<input type="text" id="textBoxName" required>
</div>
<div>
<label for="textBoxEmail">Email Address: </label>
<input type="text" id="textBoxEmail" required>
</div>
<div id="paymentMethod">
<label class="lilMarginTop" for="paymentMethod">Payment Method: </label>
<img class="paymentCash" id="cash" src="icons/cash-icon.svg">
<img class="paymentCredit" id="creditCard" src="icons/credit-card-icon.svg">
</div>
<div>
<label for="payCredit" id="payCreditL" class="payCreditL">Enter your Credit Card number: </label>
<input type="text" id="payCredit" class="payCredit">
</div>
<div>
<label for="subsType">Subscription Type: </label>
<select id="subsType" required>
<option>Mobile</option>
<option>Basic</option>
<option>Standard</option>
<option>Premium</option>
</select>
</div>
<div>
<label for="usersAccess">Additional Users Access: </label>
<input type="number" id="usersAccess" required>
</div>
<div class="resolutionRadioGroup">
<label for="resolutionTypeGroup">Resolution Type: </label>
<div class="radioB lilMarginLeft">
<label for="720p" class="radioLabel">720p</label>
<input type="radio" class="radio" id="720p" name="resolutionTypeGroup" value="720p" checked = "checked">
</div>
<div class="radioB">
<label for="1080p" class="radioLabel">1080p</label>
<input type="radio" class="radio" id="1080p" name="resolutionTypeGroup" value="1080p">
</div>
<div class="radioB">
<label for="4k" class="radioLabel">4k</label>
<input type="radio" class="radio" id="4k" name="resolutionTypeGroup" value="4k">
</div>
</div>
<div>
<input type="submit" id="testButton" value="Submit">
</div>
</form>
<div class="output">
<p id="outName"></p>
<p id="outEmail"></p>
<p id="outSubscriptionType"></p>
<p id="outTotalMonthlyFee"></p>
<p id="outEligibleDevice"></p>
<p id="outNumberUsers"></p>
<p id="outDateNextPayment"></p>
</div>
</div>
</div>
</form>
</html>