0
0
mirror of https://github.com/naturalcrit/homebrewery.git synced 2025-12-25 18:22:42 +00:00

Update fixed text and add REMOVAL button (NYI)

This commit is contained in:
G.Ambatte
2024-04-20 13:50:10 +12:00
parent 4bc07ceb4e
commit b4b4fbe375

View File

@@ -10,11 +10,19 @@ const LockNotification = createClass({
};
},
removeLock : function() {
alert('Not yet implented');
},
render : function(){
return <div className='lockNotification'>
<h1>BREW LOCKED</h1>
<p>This brew been locked by the Administrators. It will not be accessible by any method other than the Editor until the lock is removed.</p>
<hr />
<p><strong>LOCK MESSAGE:</strong></p>
<p>{this.props.message || 'Unable to retrieve Lock Message'}</p>
<button onClick={()=>{this.props.disableLock();}}>CLICK TO UNLOCK</button>
<button onClick={()=>{this.props.disableLock();}}>CONTINUE TO EDITOR</button>
<button onClick={this.removeLock}>REQUEST LOCK REMOVAL</button>
</div>;
}
});