I am new to HTML and struggling with query strings url formation
when I click "Submit" button it only adds the first query string (uuid) to the url but not the second one (datetime). I feel like I am making a very silly mistake somewhere. Also how can I put them in a fixed order if there are more than 2 ? eg:
https://foobar12345.com/test/?uuid_id=asjnd938hd-3423-dc-aa3243249&date=20190122
<!DOCTYPE html>
<html>
<head>
<title>Testing website</title>
<meta charset="utf-8">
<meta name="viewport"
content="width=device-width, initial-scale=1">
<link rel="stylesheet"
href=
"https://maxcdn.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.0/css/bootstrap.min.css" />
</head>
<body>
<div class="container">
<h1 style="text-align:center;color:green;">
Learning HTML and JS
</h1>
<form action="https://foobar12345.com/test/" method="get" target="_blank">
<div class="form-group">
<label for="">uuid:</label>
<input class="form-control" type="text" name="uuid_id" placeholder="unique id">
</div>
<form>
<div class="form-group">
<button class="btn btn-success float-right"
type="submit">
Submit
</button>
</div>
</form>
</div>
<form action="https://foobar.com/test/" method="get">
<div class="container mt-5 mb-5" style="width: 400px">
<input type="date" id="picker" class="form-control" name="start_date">
</form>
</div>
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.js"></script>
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/moment.js/2.22.1/moment.min.js"></script>
<script type="text/javascript" src="daterangepicker.js"></script>
</body>
</html>