-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcreate.php
86 lines (81 loc) · 6.13 KB
/
create.php
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
<?php include 'header.php'; ?>
<form method="post">
<input type="hidden" name="page" value="create"/>
<div id="pass">
<h2>Create Release <img src="images/potato.png" alt="potato"/></h2>
Release Name: <input type="text" name="name"><br/>
<p>Goal Launch Date: <input type="text" id="date" name="date"></p>
Office: <input type="radio" name="office" value="Indy">Indy
<input type="radio" name="office" value="Palo">Palo<br/>
Deploy To: <input type="radio" name="targetEnvironment" value="Stage1">Stage1
<input type="radio" name="targetEnvironment" value="Stage2">Stage2
<input type="radio" name="targetEnvironment" value="Both">Both
<br/><br/>
Included Applications:<br/>
<table>
<tr>
<td>
<input type="checkbox" name="applications[]" value="ALRoot"> ALRoot <br/>
<input type="checkbox" name="applications[]" value="AngiesList"> AngiesList<br/>
<input type="checkbox" name="applications[]" value="Join"> Join<br/>
<input type="checkbox" name="applications[]" value="B2BInternalAPI"> B2BInternalAPI<br/>
<input type="checkbox" name="applications[]" value="BusinessCenter"> BusinessCenter<br/>
<input type="checkbox" name="applications[]" value="BusinessCenterAPI"> BusinessCenterAPI<br/>
<input type="checkbox" name="applications[]" value="DB"> DB<br/>
<input type="checkbox" name="applications[]" value="Databases"> Databases<br/>
<input type="checkbox" name="applications[]" value="ALSchedulerExecutioner">
ALSchedulerExecutioner<br/>
<input type="checkbox" name="applications[]" value="AppleAutoRenew"> AppleAutoRenew<br/>
<input type="checkbox" name="applications[]" value="ContractInvoiceAutoRenewalProcessor">
ContractInvoiceAutoRenewalProcessor<br/>
<input type="checkbox" name="applications[]" value="ChaseCreditCardUpdateRequester">
ChaseCreditCardUpdateRequester<br/>
<input type="checkbox" name="applications[]" value="ChaseCreditCardUpdateResponseProcessor">
ChaseCreditCardUpdateResponseProcessor<br/>
<input type="checkbox" name="applications[]" value="EmailRouter"> EmailRouter<br/>
<input type="checkbox" name="applications[]" value="MediaTranscoder"> MediaTranscoder<br/>
<input type="checkbox" name="applications[]" value="StorefrontBigDealPaymentEngine">
StorefrontBigDealPaymentEngine<br/>
<input type="checkbox" name="applications[]" value="StorefrontEmailEngine">
StorefrontEmailEngine<br/>
<input type="checkbox" name="applications[]" value="StorefrontContractProcessor">
StorefrontContractProcessor<br/>
<input type="checkbox" name="applications[]" value="StorefrontNotification">
StorefrontNotification<br/>
<input type="checkbox" name="applications[]" value="StorefrontWeeklyPaymentEngine">
StorefrontWeeklyPaymentEngine<br/>
</td>
<td>
<input type="checkbox" name="applications[]" value="Tools"> Tools<br/>
<input type="checkbox" name="applications[]" value="UberMail"> UberMail<br/>
<input type="checkbox" name="applications[]" value="WebAPI"> WebAPI<br/>
<input type="checkbox" name="applications[]" value="AnalyticsService"> AnalyticsService<br/>
<input type="checkbox" name="applications[]" value="AuthenticationService">
AuthenticationService<br/>
<input type="checkbox" name="applications[]" value="ConnectHubService"> ConnectHubService<br/>
<input type="checkbox" name="applications[]" value="ContractService"> ContractService<br/>
<input type="checkbox" name="applications[]" value="FinanceService"> FinanceService<br/>
<input type="checkbox" name="applications[]" value="MembershipService"> MembershipService<br/>
<input type="checkbox" name="applications[]" value="ReviewService"> ReviewService<br/>
<input type="checkbox" name="applications[]" value="PaymentService"> PaymentService<br/>
<input type="checkbox" name="applications[]" value="StorefrontService"> StorefrontService<br/>
<input type="checkbox" name="applications[]" value="ServiceProviderService">
ServiceProviderService<br/>
<input type="checkbox" name="applications[]" value="SchedulingService"> SchedulingService<br/>
<input type="checkbox" name="applications[]" value="SearchService"> SearchService<br/>
<input type="checkbox" name="applications[]" value="ConfigurationService">
ConfigurationService<br/>
<input type="checkbox" name="applications[]" value="ServiceGateway"> ServiceGateway<br/>
<input type="checkbox" name="applications[]" value="Member-reviews"> Member-reviews<br/>
<input type="checkbox" name="applications[]" value="BusinessCenter-html5">
BusinessCenter-html5<br/>
<input type="checkbox" name="applications[]" value="B2B_API"> B2B_API<br/>
</td>
</tr>
</table>
<br/>
Additional Notes: <br/><textarea name="notes" rows="4" cols="30"></textarea><br/>
<input type="submit" name="submit" value="Create Release"/>
</div>
</form>
<?php include 'footer.php'; ?>