Skip to content

Commit d4f8237

Browse files
committed
Add banner to announce end of support for legacy validator
1 parent 1ea4a93 commit d4f8237

File tree

2 files changed

+18
-0
lines changed

2 files changed

+18
-0
lines changed

bids-validator-web/components/App.jsx

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -98,6 +98,17 @@ export default class App extends React.Component {
9898
</div>
9999
</nav>
100100
<div className="container page-wrapper">
101+
<div className="banner">
102+
<strong>Notice:</strong> This version of the BIDS Validator is no
103+
longer being developed. It is provided for historical reference
104+
only.
105+
<br />
106+
Please visit{' '}
107+
<a href="https://bids-standard.github.io/bids-validator/">
108+
https://bids-standard.github.io/bids-validator/
109+
</a>{' '}
110+
for the latest version.
111+
</div>
101112
<div className="validator">
102113
<Validate
103114
loading={this.state.status === 'validating'}

bids-validator-web/index.scss

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,13 @@ form.options input {
2727
margin-right: 0.4rem;
2828
}
2929

30+
.banner {
31+
padding: 0.4rem 1rem;
32+
margin-bottom: 1rem;
33+
background-color: #F47174;
34+
border-radius: 5px;
35+
}
36+
3037
.validation-error {
3138
position: relative;
3239
}

0 commit comments

Comments
 (0)