-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
83 lines (77 loc) · 3.86 KB
/
index.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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
---
# Front matter comment to ensure Jekyll properly reads file.
---
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="robots" content="noindex, nofollow">
<title>IRS e-File Transformation</title>
<script src="{{ site.amplify_url }}/js/jquery.min.js"></script>
<script src="{{ site.amplify_url}}/js/es6-promise.auto.min.js"></script>
<script src="{{ site.amplify_url }}/js/wgxpath.install.js"></script>
<script src="{{ site.amplify_url }}/js/polyfills.js"></script>
<script src="{{ site.amplify_url }}/js/index.js"></script>
<link href="https://fonts.googleapis.com/css?family=Merriweather:400,700" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Lato:400,700,400i" rel="stylesheet" type="text/css">
<link href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet">
<link href="{{ site.amplify_url }}/css/index.css" rel="stylesheet">
<link rel="shortcut icon" type="image/x-icon" href="{{ site.amplify_url }}/favicon.svg">
</head>
<body>
<header class="beta-banner">
<span class="fa fa-info-circle" aria-hidden="true"></span>
This site is currently in a <b>beta</b> test period. Your feedback will help us improve it.
</header>
<section class="nj-banner" aria-label="Official government website">
<header class="nj-banner__header">
<div class="grid-container">
<div class="nj-banner__inner">
<div class="grid-col-auto">
<img class="nj-banner__header-seal" src="img/nj_state_seal.png" alt="NJ flag">
</div>
<div class="grid-col-fill"><a href="https://nj.gov">Official Site of the State of New Jersey</a></div>
<div class="grid-col-auto">
<div class="text-white">
<ul>
<li>Governor Phil Murphy • Lt. Governor Tahesha Way</li><li><a href="https://nj.gov/subscribe/" target="_blank"><svg class="icon" aria-hidden="true" focusable="false" role="img" viewBox="0 0 24 24">
<path d="M20 4H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 4-8 5-8-5V6l8 5 8-5v2z"></path>
</svg>Get Updates</a></li>
</ul>
</div>
</div>
</div>
</div>
</header>
</section>
<h1>Visualize IRS 1120 XML</h1>
<div class="instructions">
<h2>Step 1: Download the 1120 XML from DORES MeF Viewer</h2>
<h2>Step 2: Open the XML file using the button below</h2>
<h2>Step 3: Select tax form to view</h2>
</div>
<div class="file-upload">
<input type="file" name="file-input" id="file-input">
<label for="file-input">
<span class="fa fa-upload" aria-hidden="true"></span>Open File
</label>
<p id="file-error"></p>
<p>Supported tax years: 2008 - 2021</p>
</p>
</div>
<div class="content-section">
<h2>Translate Raw Data Back Into a Form</h2>
<div class="demo-imgs">
<img src="{{ site.amplify_url }}/img/xml_snap.png">
<img src="{{ site.amplify_url }}/img/form_render.png">
</div>
<p>The IRS' Modern E-File (MEF) program uses XML files as the standard file format for tax return data.
This tool allows users to transform XML into a human-readable, printable format, using the <a
href="https://www.irs.gov/e-file-providers/modernized-e-file-mef-stylesheets">IRS' own stylesheets</a>.
</p>
</div>
<footer>Built with ♡ by the <a href="https://innovation.nj.gov/">New Jersey Office of Innovation</a>.<br />Stylesheets and code are available open-source on <a href="{{ site.repository_url }}">GitHub</a>.
</footer>
</body>
</html>