24 lines
		
	
	
		
			861 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			24 lines
		
	
	
		
			861 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
| <!DOCTYPE html>
 | |
| <html lang="en" xmlns:th="http://thymeleaf.org">
 | |
| <head>
 | |
|     <meta charset="UTF-8">
 | |
|     <title>Login</title>
 | |
|     <script>var mockedMessageDtoList = "[[${mockedMessageDtoList}]]";
 | |
| console.log(mockedMessageDtoList.mockedResponseId);
 | |
| console.log(mockedMessageDtoList);</script>
 | |
|     <link href="css/styles.css" rel="stylesheet" />
 | |
| </head>
 | |
| <body>
 | |
| <div><br>Please move to the next step with your own client UUID: </div>
 | |
| <form action="#" th:action="@{/home/{path}(path=${type})}" method="get">
 | |
|     <br><label >Please provide your client UUID:</label><br/>
 | |
|     <input type="text" name="clientUUID" value="436c4774-038f-4540-9c18-2691ca9b53d4" />
 | |
|     <input type="submit" value="Proceed"/>
 | |
| </form>
 | |
| <div><br>You can also register new UUID. *some logic to register UUID*:
 | |
| <br><a th:text="${clientUUID}">clientUUID should be here</a>
 | |
| </div>
 | |
| 
 | |
| 
 | |
| </body>
 | |
| </html> | 
