Change HTML input tags to use HTML5 syntax. (#1617)
In XHTML, the <input> tag must be properly closed, like this `<input />`. In HTML5 the `<input>` tag has no ending slash. https://www.w3schools.com/tags/tag_input.asp
This commit is contained in:
		@ -79,19 +79,19 @@
 | 
			
		||||
                                <label class="sr-only" for="chat-message">Message</label>
 | 
			
		||||
                                <div class="input-group">
 | 
			
		||||
                                    <div class="input-group-addon">{{.nick}}</div>
 | 
			
		||||
                                    <input type="text" name="message" id="chat-message" class="form-control" placeholder="a message" value="" />
 | 
			
		||||
                                    <input type="text" name="message" id="chat-message" class="form-control" placeholder="a message" value="">
 | 
			
		||||
                                </div>
 | 
			
		||||
                            </div>
 | 
			
		||||
                            <input type="submit" class="btn btn-primary" value="Send" />
 | 
			
		||||
                            <input type="submit" class="btn btn-primary" value="Send">
 | 
			
		||||
                        </form>
 | 
			
		||||
                        {{else}}
 | 
			
		||||
                        <form action="" method="get" class="form-inline">
 | 
			
		||||
                            <legend>Join the SSE real-time chat</legend>
 | 
			
		||||
                            <div class="form-group">
 | 
			
		||||
                                <input value='' name="nick" id="nick" placeholder="Your Name" type="text" class="form-control" />
 | 
			
		||||
                                <input value='' name="nick" id="nick" placeholder="Your Name" type="text" class="form-control">
 | 
			
		||||
                            </div>
 | 
			
		||||
                            <div class="form-group text-center">
 | 
			
		||||
                                <input type="submit" class="btn btn-success btn-login-submit" value="Join" />
 | 
			
		||||
                                <input type="submit" class="btn btn-success btn-login-submit" value="Join">
 | 
			
		||||
                            </div>
 | 
			
		||||
                        </form>
 | 
			
		||||
                        {{end}}
 | 
			
		||||
 | 
			
		||||
		Reference in New Issue
	
	Block a user